Yaf_Request_Abstract::getControllerName
(Since Yaf 1.0.0.5)
public string Yaf_Request_Abstract::getControllerName( void );
获取当前请求被路由到的控制器名.
该方法不需要参数
路由成功以后, 返回当前被分发处理此次请求的控制器名. 路由之前, 返回NULL
例 11.67. Yaf_Request_Abstract::getControllerName 的例子
<?php class ErrorController extends Yaf_Controller_Abstract { public funciton errorAction() { echo "current Controller:" . $this->getRequest()->getControllerName(); } } ?>