我有三个文件,如下所示
- 用户.php
- 授权文件
- 主文件
whereusers.php
位于目录的根目录/
。auth 并且main.php
位于测试文件夹 example /test/auth.php
&/test/main.php
中。
Users.php
包含以下 php 代码。
<?php
include('test/main.php');
?>
auth.php
包含以下 php 代码。
<?php
include('../test/main.php');
?>
main.php 代码
<?php
include('test/db.php');
?>
我在哪里执行users.php
它工作得很好但是当我执行时users.php
位于根文件夹中的输出给我完美的输出但是如果我正在执行/test/auth.php
Warning: include(test/db.php) [function.include]: failed to open stream: No such file or directory in /path/db.php on line 2
auth.php
是否有任何解决方案可以通过正确的功能访问错误。