1234567891011121314151617181920212223 |
- <?php
- /**
- * Created by PhpStorm.
- * User: 中闽 < 1464674022@qq.com >
- * Date: 2019/12/5
- * Time: 17:44
- */
- check_php_version();
- check_is_close_site();
- register_route();
- return [
- '__pattern__' => [
- 'name' => '\w+',
- ],
- '[hello]' => [
- ':id' => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
- ':name' => ['index/hello', ['method' => 'post']],
- ],
- ];
|