Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从控制器获取到所有其他控制器的路由?我需要的是获取“/customer/:customer_id/”路径。
我已经扫描了控制器文件夹,所以我知道所有控制器的名称。
有什么建议么?
这解决了一切!
$router = Zend_Controller_Front::getInstance()->getRouter(); $route = $router->getRoute($controllerName); $route->getRouteUri();
如果其他人需要,请发布答案。