需要 '/home/../http/' 与要求“/http/”一样快?

发布于 2024-07-15 08:27:05 字数 216 浏览 7 评论 0原文

我知道在 php.ini 中包含文件时使用相对路径的性能很差。 但是,对于所有路径还是仅相对于假设(上下文)包含路径的路径都是如此?

这条线

require '/home/../http/test.php'

和这条线一样快吗

require '/http/test.php'

I know that it is poor performance to use relative paths when including a file in php. But, is this true for for all paths or just paths relative to the assumed (context) include path?

Is this line

require '/home/../http/test.php'

as fast as this line

require '/http/test.php'

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

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

发布评论

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

评论(2

傾城如夢未必闌珊 2024-07-22 08:27:05

不管怎样,一个有组织的结构远远超过了解析较长字符串所花费的小代价。

Either ways, an organized structure far out-weighs the small penalty spent on parsing a longer string.

橘虞初梦 2024-07-22 08:27:05

基本上是的。 这些路径基本上首先由 php/apache 解析,然后由操作系统解析。

Basically yes. These paths are basically resolved first by php/apache then operating system.

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