11

案例:您正在使用 Zend Framework 开发一个站点,并且需要到部署 webapp 的文件夹的相关链接。即mysite.com/folder在线和localhost:8080正在开发中。

无论部署位置如何,以下在控制器中都可以正常工作:

$this->_helper->redirector->gotoSimple($action, $controller, $module, $params);

下面是一个视图脚本,即。索引.phtml:

<a href="<?php echo $this->url(array('controller'=>'index', 'action' => 'index'), null, true); ?>">

但是在链接到图像或样式表时如何获得正确的基本路径?(例如在 layout.phtml 文件中):

<img src='<?php echo WHAT_TO_TYPE_HERE; ?>images/logo.png' />

$this->headLink()->appendStylesheet( WHAT_TO_TYPE_HERE . 'css/default.css');

WHAT_TO_TYPE_HERE应该用给出的东西代替

<img src="/folder/images/logo.png />` on mysite.com and `<img src="/images/logo.png />

在本地主机上

4

6 回答 6

16

您可以从 Front Controller 获取基本 url Zend_Controller_Front::getInstance()->getBaseUrl();。我将其包装在视图助手中

class My_View_Helper_BaseUrl 
{   
    /**
     *  Get base url
     * 
     * @return string
     */
    public function baseUrl()
    {
        return rtrim(Zend_Controller_Front::getInstance()->getBaseUrl(),'/');
    }

}

因此,在 html 标记中,您会<img src="<?php echo $this->baseUrl();?>/images/logo.png"/>在帮助程序中去除尾斜杠,这样当应用程序不在子文件夹中运行时(baseUrl 在这种情况下为空白),路径仍然有效。

于 2009-03-11T18:26:17.290 回答
14

如果有人想知道最好的方法并且不想浪费 2 小时搜索 Zend/Google。有一个视图助手可以做到这一点。

$this->view->serverUrl();
于 2011-09-29T19:31:36.427 回答
5

如果您想在layout文件中托管名称,请打印并获取您的HOST姓名:

echo $this->serverUrl().$this->baseUrl()
于 2012-02-17T08:43:51.043 回答
4

这是我的baseUrl助手:

class Zend_View_Helper_BaseUrl extends Zend_View_Helper_Abstract {
    public function baseUrl() {
        $protocol = isset($_SERVER['HTTPS']) ? 'https' : 'http';
        $server = $_SERVER['HTTP_HOST'];
        $port = $_SERVER['SERVER_PORT'] != 80 ? ":{$_SERVER['SERVER_PORT']}" : '';
        $path = rtrim(dirname($_SERVER['SCRIPT_NAME']), '/\\') . '/';
        return "$protocol://$server$port$path";
    }
}
于 2009-07-04T12:40:31.653 回答
0
<?php
/**
 *
 * @package   TaMeR Library
 * @copyright (C) 2010 Dennis T Kaplan
 * @license   GPL {@link http://www.gnu.org/licenses/gpl.html}
 *
 * @author       Dennis T Kaplan
 */

/** @see Zend_View_Helper_Abstract */
require_once 'Zend/View/Helper/Abstract.php';

class TaMeR_View_Helper_BaseUrl extends Zend_View_Helper_Abstract {
    /**
     * 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) {

        $baseUrl = $domain = $subdomain = $protocol = $host = $port = NULL;

        $host = array_reverse(explode('.', $_SERVER['HTTP_HOST']));
        $domain = $host[1].'.'.$host[0];
        $subdomain = (isset($host[2]) ? $host[2] : 'www');
        if(getenv("HTTPS") == 'on') {
            $protocol = 'https';
            $port     = $_SERVER['SERVER_PORT'] != 443 ? ':'.$_SERVER['SERVER_PORT'] : '';
        }else{
            $protocol = 'http';
            $port     = $_SERVER['SERVER_PORT'] != 80 ? ':'.$_SERVER['SERVER_PORT'] : '';
        }

        // Remove trailing slashes
        if(NULL !== $file) {
            $file = '/' . ltrim($file, '/\\');
        }else{
            $file = rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/';
        }
        $baseUrl = $protocol.'://'.$subdomain.'.'.$domain.$port.$file;
        return $baseUrl;
    }
}
于 2010-03-19T18:50:13.027 回答
0

这对我有用:

回声 $this->serverUrl() 。$this->url()

于 2013-01-05T03:18:38.840 回答