开发者

Question about Codeigniter url route

开发者 https://www.devze.com 2023-03-15 14:34 出处:网络
The $route[\'page/(:num)\'] in the route.php of codeigniter will accept only numbers in the urls, while the$route[\'page/(:any)\'] will accept all the characte开发者_开发知识库rs in the url. Is it pos

The $route['page/(:num)'] in the route.php of codeigniter will accept only numbers in the urls, while the $route['page/(:any)'] will accept all the characte开发者_开发知识库rs in the url. Is it possible to specify alpha-numeric values only? also letters only? Thanks.


It would be nice, but according to the docs, you're going to need to use regular expressions.

$route['products/([a-zA-Z0-9]+)'] = "controller/method/$1";
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号