ZF:如何获取视图中任意页面的当前url?

发布于 2024-10-28 03:47:18 字数 65 浏览 2 评论 0原文

我对总体布局有一个价值。 我需要将此值设置为任何页面上的当前 url。 如何做到这一点?

感谢大家

I have a value in general layout.
I need to set this value to current url on any page.
How to do this?

Thanks to all

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

素衣风尘叹 2024-11-04 03:47:18

Zend Framework 2 中,您可以使用 Zend\View\Helper\ServerUrl 视图助手。非常简单:

//for example, your current URI is: http://mydomain.com/page/sample/

//get your domain
$uri = $this->serverUrl(); // Output: http://mydomain.com

//get your current URI
$uri = $this->serverUrl(true); // Output: http://mydomain.com/page/sample/

了解更多: http:// codingexplained.com/coding/php/zend-framework/create-full-urls-in-zf2-views

In Zend Framework 2 you can use Zend\View\Helper\ServerUrl view helper. It's very simple:

//for example, your current URI is: http://mydomain.com/page/sample/

//get your domain
$uri = $this->serverUrl(); // Output: http://mydomain.com

//get your current URI
$uri = $this->serverUrl(true); // Output: http://mydomain.com/page/sample/

Learn more: http://codingexplained.com/coding/php/zend-framework/create-full-urls-in-zf2-views

过去的过去 2024-11-04 03:47:18

有几种方法可以获取请求的 url。一种是通过 $_SERVER["REQUEST_URI"],就像您所做的那样,但是 ZF 当然有自己的方式。两个例子是:

  // you can call it in a view or a layout
  $uri = Zend_Controller_Front::getInstance()->getRequest()->getRequestUri();

  // or using userAgent view helper in a view or a layout:
  $uri = $this->userAgent()->getServerValue('request_uri');

希望这有帮助。

There are few ways you could get the requested url. One is through $_SERVER["REQUEST_URI"], as you did, but off course ZF has its own ways. Two examples are:

  // you can call it in a view or a layout
  $uri = Zend_Controller_Front::getInstance()->getRequest()->getRequestUri();

  // or using userAgent view helper in a view or a layout:
  $uri = $this->userAgent()->getServerValue('request_uri');

Hope this helps.

小伙你站住 2024-11-04 03:47:18

在 ZF1 和 ZF2 中,您可以使用带 null 的 Url View Helper 来获取当前路由

url() ?>

In ZF1 and ZF2 you can use the Url View Helper with null to get the current route

<?= $this->url() ?>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文