2

我目前正在学习 Zend Framework,并遇到了以下语法。

class Zend_Controller_Action_Helper_Redirector extends Zend_Controller_Action_Helper_Abstract
{
    /**
     * Perform a redirect to an action/controller/module with params
     *
     * @param  string $action
     * @param  string $controller
     * @param  string $module
     * @param  array  $params
     * @return void
     */
    public function gotoSimple($action, $controller = null, $module = null, array $params = array())
    {
        $this->setGotoSimple($action, $controller, $module, $params);

        if ($this->getExit()) {
            $this->redirectAndExit();
        }
    }

    /**
     * direct(): Perform helper when called as
     * $this->_helper->redirector($action, $controller, $module, $params)
     *
     * @param  string $action
     * @param  string $controller
     * @param  string $module
     * @param  array  $params
     * @return void
     */
    public function direct($action, $controller = null, $module = null, array $params = array())
    {
        $this->gotoSimple($action, $controller, $module, $params);
    }
}

在 Zend Framework 中,可以使用以下语法调用此类中的 direct() 方法:

$this->_helper->redirector('index','index');

其中 redirector 是 _helper 对象中的一个对象(!),它位于控制器对象内部,我们在其中调用方法。这里的语法糖是你可以将参数传递给对象而不是方法,我们可以这样写:

$this->_helper->redirector->gotoSimple('index','index');

..当然,这一切都很好。

这是我的问题:这个 direct() 方法在 OO PHP 中是标准的吗?或者这个功能是内置在 Zend 框架中的吗?我找不到任何关于此的文档。

谢谢!

4

1 回答 1

11

它是 Zend 框架中内置的功能。

$_helpersController 实例中的属性包含一个Action_HelperBroker实例。这个实例实现了 PHP 的魔法__call方法。当您调用该实例上不存在的方法时,它将尝试使用方法名称来获取同名的帮助器并调用direct()它(如果可能)。请参阅下面的代码。

Zend_Controller_Action

/**
 * Helper Broker to assist in routing help requests to the proper object
 *
 * @var Zend_Controller_Action_HelperBroker
 */
protected $_helper = null;

Zend_Controller_Action_HelperBroker

/**
 * Method overloading
 *
 * @param  string $method
 * @param  array $args
 * @return mixed
 * @throws Zend_Controller_Action_Exception if helper does not have a direct() method
 */
public function __call($method, $args)
{
    $helper = $this->getHelper($method);
    if (!method_exists($helper, 'direct')) {
        require_once 'Zend/Controller/Action/Exception.php';
        throw new Zend_Controller_Action_Exception('Helper "' . $method . '" does not support overloading via direct()');
    }
    return call_user_func_array(array($helper, 'direct'), $args);
}

Helper Broker 也实现了魔法__get方法,所以当你尝试访问一个不存在的属性时,Broker 会使用属性名作为参数getHelper()

/**
 * Retrieve helper by name as object property
 *
 * @param  string $name
 * @return Zend_Controller_Action_Helper_Abstract
 */
public function __get($name)
{
    return $this->getHelper($name);
}

请注意,魔术方法并不意味着替代适当的 API。虽然您可以如上所示使用它们,但调用更详细的

$this->_helper->getHelper('redirector')->gotoSimple('index','index');

通常是更快的选择。

于 2010-10-30T12:51:25.187 回答