alsemany/route
Composer 安装命令:
composer require alsemany/route
包简介
Simple PHP router class.
README 文档
README
forked from noahbuscher/Macaw
Route
Route is a simple, open source PHP router. It's super small (~150 LOC), fast, and has some great annotated source code. This class allows you to just throw it into your project and start using it immediately.
Install
Composer
If you have Composer
# composer require alsemany/route
Download From Releases
https://github.com/alsemany/route/releases Download Zip file or tar.gz
Examples
First, use the Route namespace:
use \Alsemany\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::dispatch();
Route also supports lambda URIs, such as:
Route::get('/(:any)', function($slug) { echo 'The slug is: ' . $slug; }); Route::dispatch();
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::dispatch();
Lastly, if there is no route defined for a certain location, you can make Route run a custom callback, like:
Route::catchall(function() { echo 'Catching All 404 Errors :: Not Found'; });
If you don't specify an error callback, Route will just echo 404.
In order to let the server know the URI does not point to a real file, you may need to use one of the example configuration files.
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 Alsemany\Route\Route; Route::get('/', 'Controllers\demo@index'); Route::get('page', 'Controllers\demo@page'); Route::get('view/(:num)', 'Controllers\demo@view'); Route::dispatch();
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": {
"alsemany/Route": "^0.1.0"
},
"autoload": {
"psr-4": {
"" : ""
}
}
}
.htaccess(Apache):
RewriteEngine On
RewriteBase /
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [QSA,L]
.htaccess(Nginx):
rewrite ^/(.*)/$ /$1 redirect;
if (!-e $request_filename){
rewrite ^(.*)$ /index.php break;
}
alsemany/route 适用场景与选型建议
alsemany/route 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 42 次下载、GitHub Stars 达 1, 最近一次更新时间为 2017 年 12 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「router」 「Simple」 「easy」 「php-router」 「catch-all」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 alsemany/route 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 alsemany/route 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 alsemany/route 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple library for make Lexer and Parsers to build a language
A simple library that allows transform any kind of data to native php data or whatever
A simple library that uses the hydration pattern to fill objects given different sources of data.
Micro Active Record library in PHP, support chain calls, events, and relations.
A simple content
Router
统计信息
- 总下载量: 42
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-12-06