Is there an standalone PHP routing library?(是否有独立的 PHP 路由库?)
问题描述
我希望向 PHP 应用程序添加一些动态的、REST 风格的路由.我很想使用现有的路由库,这样我就不必重新发明轮子了.
I'm looking to add some dynamic, REST-esque routing to a PHP application. I'd love to use an existing routing library so I don't have to reinvent the wheel.
然而,当我看到像 Slim 和 F3 这样的东西时,它们都带有我不想要的东西——比如模板和 MVC——包括在内.因为我只想要路由,所以我的应用程序中最终会出现很多我不需要的框架代码.
However, when I look at things like Slim and F3, they all come with things I don't want--like templating and MVC--included. Since I just want routing, I'd end up with a lot of framework code in my application that I don't need.
有没有一个好的库只做路由?还是我坚持导入完整框架或重新发明轮子?
Is there a good library out there that only does routing? Or am I stuck with importing a full framework or reinventing the wheel?
推荐答案
试试Klein:
单个文件,独立且强大:
Single file, standalone and robust:
klein.php 是适用于 PHP 5.3+ 的闪电般快速的路由器"
"klein.php is a lightning fast router for PHP 5.3+"
- 灵活的正则表达式路由(受 Sinatra 启发)
- 一组用于快速构建网络应用的样板方法
- 几乎没有开销 => 2500+ 个请求/秒
https://github.com/chriso/klein.php
这篇关于是否有独立的 PHP 路由库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否有独立的 PHP 路由库?
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- HTTP 与 FTP 上传 2021-01-01