yzmcms/route
Composer 安装命令:
composer create-project yzmcms/route
包简介
this is min php route.
README 文档
README
Install
If you have Composer, just include route as a project dependency in your composer.json. If you don't just install it by downloading the .ZIP file and extracting it to your project directory.
require: {
"yzmcms/route": "*"
}
Examples
First, use the route namespace:
use yzmcms\route\route;
route is not an object, so you can just make direct operations to the class. Here's the Hello World:
route::get('/', function() { echo 'Hello world!'; }); route::exec();
route also supports lambda URIs, such as:
route::get('/(:any)', function($slug) { echo 'The slug is: ' . $slug; }); route::exec();
You can also make requests for HTTP methods in route, so you could also do:
route::get('/', function() { echo 'I'm a GET request!'; }); route::post('/', function() { echo 'I'm a POST request!'; }); route::any('/', function() { echo 'I can be both a GET and a POST request!'; }); route::exec();
Example passing to a controller instead of a closure
It's possible to pass the namespace path to a controller instead of the closure:For this demo lets say I have a folder called controllers with a demo.php
index.php:
require('vendor/autoload.php'); use yzmcms\route\route; route::get('/', 'Controllers\demo@index'); route::get('page', 'Controllers\demo@page'); route::get('view/(:num)', 'Controllers\demo@view'); route::exec();
demo.php:
<?php namespace controllers; class Demo { public function index() { echo 'home'; } public function page() { echo 'page'; } public function view($id) { echo $id; } }
This is with route installed via composer.
composer.json:
{
"require": {
"yzmcms/route": "*"
},
"autoload": {
"psr-4": {
"" : ""
}
}
}
yzmcms/route 适用场景与选型建议
yzmcms/route 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 07 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「route」 「phproute」 「yzmphp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 yzmcms/route 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 yzmcms/route 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 yzmcms/route 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Provide a way to secure accesses to all routes of an symfony application.
Write down your routing mapping at one place
A Laravel-like router for the WordPress Rewrite API
A Laravel helper to detect if the current route/path is active.
raxon/route see https://raxon.org for detailed usage
Laravel validation rule to check if a custom route key exists.
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-07-01