我$front->getRequest()->getParams()
用来获取 url 参数。他们看起来像这样
Zend_Debug::dump($front->getRequest()->getParams());
array(4) {
["id"] => string(7) "3532231"
["module"] => string(7) "test"
["controller"] => string(6) "index"
["action"] => string(5) "index"
}
我有兴趣preg_match_all
通过使用一些类似于([\s0-9])+
出于某种原因,我无法隔离该号码。
数组中可能会有更多id
类似的值,但preg_match_all
应该在新数组中将它们还给我
有任何想法吗?
谢谢