gaucho/router
最新稳定版本:v1.0.0
Composer 安装命令:
composer require gaucho/router
包简介
README 文档
README
Roteador PHP simples baseado no código do Pinatra (versão PHP do roteador do Sinatra)
Instalação
composer require gaucho/router
Utilização
<?php require 'vendor/autoload.php'; get('/',function(){ print 'hello world'; }); get('{name}',function($name){ code(200); print 'hello '.$name; });
Apache
Adicione o seguinte código ao .htaccess:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
统计信息
- 总下载量: 92
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-01