这是我现在正在抓的错误。
PHP Fatal error: require(): Failed opening required '/base/data/home/apps/s~civic-planet-191520/20180221t115719.407805658953142647/web-service/web/../vendor/autoload.php' (include_path='.;/base/data/home/apps/s~civic-planet-191520/20180221t115719.407805658953142647/;/base/php_experiment_runtime/sdk')
我的autoload.php
文件放在vendor
目录中,我从autoload.php
文件加载web/index.php
文件。 Web
和vendor
目录都在同一个列表中。请查看下面的屏幕截图。
我正在使用此PHP代码加载autoload.php
文件。
require __DIR__."/../vendor/autoload.php";
我也尝试过:
require(__DIR__. '/../vendor/autoload.php');
我的项目正在加载谷歌应用引擎。