可能重复:
require_once 中的相对路径不起作用
我有一个这样的项目结构:
ProjectName/
src
test
TestClass.php
tests
TestTestClass.php
当我尝试require_once '/ProjectName/src/test/TestClass.php';
进入tests/TestTestClass.php 时,我从 PHP 中得到一个错误,指出:没有这样的文件或目录。
我检查了拼写,我检查了一切。我不能给它完整的/home/userName/bla/bla
路径,因为我需要把它交给其他人。
有任何想法吗?