Kohana 3.1 相当于 Request::instance()->directory?

发布于 2024-11-17 20:40:22 字数 139 浏览 2 评论 0原文

我的应用程序中有这段代码...

Request::instance()->directory

升级到 3.1 后它停止工作...我想知道 3.1 的等效项是什么...?

谢谢

Have this bit of code in my app...

Request::instance()->directory

After upgrading to 3.1 it stopped working... I was wondering what the 3.1 equivalent of this would be...?

Thanks

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

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

发布评论

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

评论(2

蘸点软妹酱 2024-11-24 20:40:22

Request::instance() 已替换为 Request::current()Request::initial()。 通常您会想要使用 Request::current(), 但如果您确定需要原始请求(运行 hmvc 请求时),请使用 Request::initial()。

Request::instance() has been replaced by Request::current() and Request::initial(). Normally you'll want to use Request::current(), but if you are sure you want the original request (when running hmvc requests), use Request::initial().

瑾夏年华 2024-11-24 20:40:22
Request::initial()->directory()
Request::initial()->directory()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文