在 Kohana 3 中获取完整站点主页 URL

发布于 2024-09-03 14:21:14 字数 250 浏览 5 评论 0原文

我安装了 Kohana(在我的 xampp 公共文件夹中的“kohana”目录中),并且尝试获取包含域和协议的完整基本 URL。

当我尝试时:

url::base();

我只得到 /kohana/ 结果,但想要 http://localhost/kohana/

是否可以在 Kohana 中执行此操作,或者我必须使用标准 PHP?

I installed Kohana (in a "kohana" directory in my xampp public folder) and I'm trying to get the full base URL with the domain and protocol.

When I try:

url::base();

I only get /kohana/ back as a result, but want http://localhost/kohana/ instead.

Is it possible to do this in Kohana, or must I use standard PHP?

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

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

发布评论

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

评论(1

稀香 2024-09-10 14:21:14

您不必扩展任何内容,只需将 URL::siteprotocol 参数结合使用即可:

$base_url = URL::site(NULL, TRUE);

这将生成具有当前协议的基本 URL。如果您想使用特定协议:

$base_url = URL::site(NULL, 'http');

无需在这里重新发明轮子!

You don't have to extend anything, just use URL::site with the protocol parameter:

$base_url = URL::site(NULL, TRUE);

This will generate a base URL with the current protocol. If you want to use a specific protocol:

$base_url = URL::site(NULL, 'http');

No need to reinvent the wheel here!

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