我使用的是 symfony 1.0,下面是显示新闻描述的 URL。
http://news4u.com/search/news/id/344158/css//act/n
上面的 CSS 的 URL 值缺失,URL 应该如下所示
http://news4u.com/search/news/id/344158/css/n/act/n
当我$this->getRequestParameter('css')
用来获取 css 的值时,我将其作为“act”,如果对“act”执行相同的操作,我将得到空值。
$getRequestParameter('css')=act
$getRequestParameter('act')=<EMPTY>
我正在获取提到的 URL 的上述参数的值。
我想在上面的 URL 中获取 'act' 的值。如何得到它?