route.php 399 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 中闽 < 1464674022@qq.com >
  5. * Date: 2019/12/5
  6. * Time: 17:44
  7. */
  8. check_php_version();
  9. check_is_close_site();
  10. register_route();
  11. return [
  12. '__pattern__' => [
  13. 'name' => '\w+',
  14. ],
  15. '[hello]' => [
  16. ':id' => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
  17. ':name' => ['index/hello', ['method' => 'post']],
  18. ],
  19. ];