将baseurl值添加到我的控制器中

时间:2010-04-19 07:07:48

标签: zend-framework zend-controller base-url

创建一个需要

返回值的动作助手
Zend_View_Helper_BaseUrl

我该怎么做?

3 个答案:

答案 0 :(得分:5)

$this->view->baseUrl()应该有用。

但我建议创建新的动作助手,它基本上是视图助手的副本,但您可以根据自己的需要进行修改:

/**
 * Generate URL of the current domain
 *
 */
class My_Controller_Action_Helper_BaseUrl
extends Zend_Controller_Action_Helper_Abstract
{
    public function direct($file = null, $full = true)
    {
        return $this->baseUrl($file, $full);
    }

    /**
     * BaseUrl
     *
     * @var string
     */
    protected $_baseUrl;

    /**
     * Returns site's base url, or file with base url prepended
     *
     * $file is appended to the base url for simplicity
     *
     * @param  string|null $file
     * @return string
     */
    public function baseUrl($file = null)
    {
        // Get baseUrl
        $baseUrl = $this->getBaseUrl();

        // Remove trailing slashes
        if (null !== $file) {
            $file = '/' . ltrim($file, '/\\');
        }

        return $baseUrl . $file;
    }

    /**
     * Set BaseUrl
     *
     * @param  string $base
     * @return My_Controller_Action_Helper_BaseUrl
     */
    public function setBaseUrl($base)
    {
        $this->_baseUrl = rtrim($base, '/\\');
        return $this;
    }

    /**
     * Get BaseUrl
     * @return string
     */
    public function getBaseUrl()
    {
        if ($this->_baseUrl === null) {
            /** @see Zend_Controller_Front */
            require_once 'Zend/Controller/Front.php';
            $baseUrl = Zend_Controller_Front::getInstance()->getBaseUrl();

            // Remove scriptname, eg. index.php from baseUrl
            $baseUrl = $this->_removeScriptName($baseUrl);

            $this->setBaseUrl($baseUrl);
        }

        return $this->_baseUrl;
    }

    /**
     * Remove Script filename from baseurl
     *
     * @param  string $url
     * @return string
     */
    protected function _removeScriptName($url)
    {
        if (!isset($_SERVER['SCRIPT_NAME'])) {
            // We can't do much now can we? (Well, we could parse out by ".")
            return $url;
        }

        if (($pos = strripos($url, basename($_SERVER['SCRIPT_NAME']))) !== false) {
            $url = substr($url, 0, $pos);
        }

        return $url;
    }
}

答案 1 :(得分:3)

您可以通过以下方式从应用中的任何位置获取视图句柄:

$viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
$view = $viewRenderer->view;

有可能视图不会被初始化,而是来自一个不应该成为问题的ActionHelper。您还可以使用以下命令获取BaseUrl视图助手使用的URL:

Zend_Controller_Front::getInstance()->getBaseUrl();

答案 2 :(得分:2)

我现在无法验证,但我相信Action Helper将通过$this->getActionController()访问控制器,public $view具有 $baseUrl = $this->getActionController()->view->baseUrl(); 所以:

{{1}}