1. 首页
  2. 移动开发
  3. 其他
  4. 高效路由的PHP库.zip

高效路由的PHP库.zip

上传者: 2020-07-19 20:12:52上传 ZIP文件 33.43KB 热度 17次
<?php namespace FastRoute; use PHPUnit\Framework\TestCase; class RouteCollectorTest extends TestCase {     public function testShortcuts() {         $r = new DummyRouteCollector();         $r->delete('/delete', 'delete');         $r->get('/get', 'get');         $r->head('/head', 'head');
用户评论