我想从 zend 中的 URL 中获取以下值。
$FrontController = Zend_Controller_Front::getInstance();
$Router = $FrontController->getRouter();
$Router->addRoute("homestore",
new Zend_Controller_Router_Route (
"index/store",
array("controller" => "index", "action" => "home")
);
我想store
从 URL 中获取 ,而不是实际操作值home
. 我怎么能这样。我已经尝试了很多搜索,但找不到任何有用的东西。