如何相对要求PHP文件(在不同的目录级别)?
2022-08-30 10:14:39
我有以下文件结构:
rootDIR dir1 subdir1 file0.php file1.php dir2 file2.php file3.php file4.php
file1.php
需要 和 从 dir2 像这样:file3.php
file4.php
require('../../dir2/file3.php')
file2.php
需要像这样:file1.php
require('../dir1/subdir1/file1.php')
但随后要求在未能打开和(也许是由于路径相对性)file1.php
file3.php
file4.php
但是,原因是什么,我能做些什么,如此适当的要求和?file2.php
file1.php
file3.php
file4.php