相对 Web 路径与绝对路径

发布于 2024-11-15 10:19:41 字数 154 浏览 3 评论 0原文

这是一个由 3 部分组成的问题

相对路径是否存在性能或安全风险?

如何将相对路径转换为绝对路径[在用 PHP 编写的大型项目中]?

在 PHP 中使用 include 时我应该给出绝对路径还是相对路径?

this is a 3 part question

Is there any performance or security risk in relative path ?

How can i convert relative path to absolute path [in a large project written in PHP] ?

in PHP when using include should i give the absolute path or the relative path ?

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

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

发布评论

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

评论(1

感性不性感 2024-11-22 10:19:41

PHP中有两种相对路径。根据文件系统的相对路径以 ./../ 开头,不会影响性能。 PHP 还专门解释诸如 what/ever.php 之类的相对路径,并将 include_path 考虑在内。这通常(明显)慢,因为必须遍历和搜索目录。

安全性这个问题太广泛了,并没有直接发挥作用。如果可能存在恶意包含脚本放置在系统的其他位置和 include_path 内,那么我会考虑实际问题,而不是相对路径。

您应该在项目中使用什么,取决于它是否需要可重新定位。最常见的是使用常量ala PROJECT_ROOT 来模拟绝对路径。

要将文件系统相对路径转换为绝对路径,请使用 realpath()

There are two kinds of relative paths in PHP. Relative paths according to the filesystem start with ./ or ../ and do not impact performance. PHP also interprets relative paths like what/ever.php specially itself and takes the include_path into account for those. That's usually (measurably) slower since directories have to be traversed and searched.

Security, that's too broadly asked, does not directly play into that. And if there are possibly malicious include scripts placed elsewhere on the system and within the include_path, then I would consider that the actual problem, not the relative paths.

What you should use in your project, depends on if it needs to be relocatable. It's most common to simulate absolute paths using a constant ala PROJECT_ROOT.

To transform a filesystem-relative path into an absolute, use realpath()

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