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.
这是项目文件结构的图像 -
我include 'connect.php'在 index.php 文件中添加了。
include 'connect.php'
Index.php 文件存在于注册文件夹中。但我得到一个错误'无法打开流没有这样的文件'。
您可以在包含中添加一个简单DOCUMENT_ROOT的方法,它将始终用于文件的直接服务器路径。
DOCUMENT_ROOT
include $_SERVER["DOCUMENT_ROOT"]."/connect.php";