Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都知道是否有指向/调用文件的“最佳”或行业标准?可以说还涉及文件夹和子文件夹。我找到了一些不同的方法来做这件事。只是寻找一些指针〜。^和意见。
Windows 与 Linux(即使我使用的是 Linux,仅适用于看到这篇文章的其他人)
(dirname(__FILE__)) BASE_PATH $_SERVER["HTTP_HOST"] $_SERVER['DOCUMENT_ROOT']
我个人使用这个:
require_once __DIR__ . '/../../my/path/to/file.php';
这样,无论$_SERVER、 OS 或包含路径如何,它总是正确的。
$_SERVER