noahbuscher/macaw
Composer 安装命令:
composer require noahbuscher/macaw
包简介
Simple PHP router class.
关键字:
README 文档
README
Macaw 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
If you have Composer, just include Macaw 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: {
"noahbuscher/macaw": "dev-master"
}
Examples
First, use the Macaw namespace:
use \NoahBuscher\Macaw\Macaw;
Macaw is not an object, so you can just make direct operations to the class. Here's the Hello World:
Macaw::get('/', function() { echo 'Hello world!'; }); Macaw::dispatch();
Macaw also supports lambda URIs, such as:
Macaw::get('/(:any)', function($slug) { echo 'The slug is: ' . $slug; }); Macaw::dispatch();
You can also make requests for HTTP methods in Macaw, so you could also do:
Macaw::get('/', function() { echo 'I'm a GET request!'; }); Macaw::post('/', function() { echo 'I'm a POST request!'; }); Macaw::any('/', function() { echo 'I can be both a GET and a POST request!'; }); Macaw::dispatch();
Lastly, if there is no route defined for a certain location, you can make Macaw run a custom callback, like:
Macaw::error(function() { echo '404 :: Not Found'; });
If you don't specify an error callback, Macaw 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 NoahBuscher\Macaw\Macaw; Macaw::get('/', 'Controllers\demo@index'); Macaw::get('page', 'Controllers\demo@page'); Macaw::get('view/(:num)', 'Controllers\demo@view'); Macaw::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 Macaw installed via composer.
composer.json:
{
"require": {
"noahbuscher/macaw": "dev-master"
},
"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;
}
noahbuscher/macaw 适用场景与选型建议
noahbuscher/macaw 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17.06k 次下载、GitHub Stars 达 848, 最近一次更新时间为 2014 年 12 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「router」 「php-router」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 noahbuscher/macaw 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 noahbuscher/macaw 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 noahbuscher/macaw 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Router
PMVC App Action Router
Database alias router extension for Nette Framework
Alfabank REST API integration
PHP Router
A PSR7 / PSR-15 compatible HTTP router.
统计信息
- 总下载量: 17.06k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 882
- 点击次数: 10
- 依赖项目数: 20
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-03