我正在尝试以这种方式使用顿悟框架实现 Rest Web 服务:
include_once 'rest/Epi.php';
Epi::setSetting('exceptions', true);
Epi::setPath('base', 'rest');
Epi::init('route');
getRoute()->post('/city/(\w+)', 'getCity');
getRoute()->run();
function getCity($tmp){
//My work
}
当我使用 url 时,问题就出现了:
http://mydomain/*/city/OLOMOUC-REPUBLICA%20CHECA
我的理解是问题出在正则表达式上(\w+)
,我该如何更改它以允许任何字符串?