我有以下文件結構:PHP需要()相對路徑錯誤
rootDIR dir1 subdir1 file0.php file1.php dir2 file2.php file3.php file4.php
file1.php
需要來自DIR2這樣file3的和文件4:
require('../../dir2/file3.php')
file2.php
要求file1.php
這樣的:
require('../dir1/subdir1/file1.php')
但之後在file1中要求無法打開文件3和文件4(可能是由於路徑親戚關係)
但究竟是什麼原因,什麼能爲file2.php
我這樣做file1.php
正常需要文件3和文件4
http://stackoverflow.com/questions/11383960/how-to-refer-back-to-public-html-root-file-using-include-after-going-up-one-file在這裏你可以找到明確的解釋。 –