我正在建立一个社交头像网络脚本网站。但是我该如何解决这个问题?
Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in /home/flamore/domains/socialhaven.cal24.pl/public_html/index.php on line 21 Warning: require(__DIR__/../../../laravel/bootstrap/autoload.php): failed to open stream: No such file or directory in /home/flamore/domains/socialhaven.cal24.pl/public_html/index.php on line 21 Fatal error: require(): Failed opening required '__DIR__/../../../laravel/bootstrap/autoload.php' (include_path='.:/usr/local/lib/php') in /home/flamore/domains/socialhaven.cal24.pl/public_html/index.php on line 21
我对php仍然很陌生,我无法使SANS 2.0正常工作!
一行代码:$app = require_once __DIR__ . "/../../../laravel/bootstrap/autoload.php";
答案 0 :(得分:0)
尝试使用__DIR__
代替DIR
。
__DIR__
解析到当前目录。 DIR
是一个未定义的常量,用于显示错误消息。