如果我要包含的文件位于当前 PHP 文件的文件夹之外,我该如何包含 PHP 文件

How can I include PHP files if the file that I'm going to include is located outside the folder of my current PHP file

如果我要包含的文件位于 php 文件的当前目录之外,我该如何包含 PHP 文件。当我包含整个目录时它会起作用,例如

include 'C:\xampp\htdocs\sample1\samplephpfile.php';

但是我知道如果我把我的网站上传到网络服务器上,使用起来效率不高。请帮助。谢谢。

使用../返回上一级目录,使用/进入根目录。

This article 进一步解释这个想法。

您可以定义根路径,然后仅使用 ROOT_PATH。如果你想改变它,你只能在一个地方做。

define('ROOT_PATH', 'C:\xampp\htdocs\sample1\');