我在php中创建了一个我希望包含在项目中的文件。
我把require_once __DIR__.'/file_1.php';
我收到错误:
FastCGI sent in stderr: "PHP message: PHP Warning: require_once(/var/www/my/main/file_1.php): failed to open stream: No such file or directory in /var/www/my/main/index.php
在我想要添加新文件之前,有一个require_once
用于同一位置的另一个文件。
require_once __DIR__.'/file_that_was.php'; -> works
require_once __DIR__.'/file_1.php'; -> doesn't work
我的新文件与有效的文件具有相同的权限。
file_1.php
没有任何错误。这只是一个简单的回声。
我错过了什么?