如何在Zend \ Mvc \ Router \ Http \ Regex不区分大小写的情况下制作正则表达式?
如果我有
$route = Regex::factory(array(
'regex' => '/blog/(?<id>Test)',
'defaults' => array(
'controller' => 'Application\Controller\BlogController',
'action' => 'view',
'format' => 'html',
),
'spec' => '/blog/%id%',
));
'regex' => '/blog/(?<id>Test)i',
无效。
'regex' => '/blog/(?<id>Testi)',
也无效。
如何解决这个问题?