码迷,mamicode.com
首页 > 其他好文 > 详细

laravel 命令行测试 Uncaught ReflectionException: Class config does not exist

时间:2019-03-05 11:11:00      阅读:755      评论:0      收藏:0      [点我收藏+]

标签:图片   autoload   any   require   style   令行   inf   exception   img   

 

require __DIR__ . ‘/vendor/autoload.php‘;
$app = require_once __DIR__ . ‘/bootstrap/app.php‘;

config(‘any‘);

 

技术图片

 

 

解决办法:

require __DIR__ . ‘/vendor/autoload.php‘;
$app = require_once __DIR__ . ‘/bootstrap/app.php‘;

(new \Illuminate\Foundation\Bootstrap\LoadConfiguration)->bootstrap($app);
config(‘any‘);

 使用 (new \Illuminate\Foundation\Bootstrap\LoadConfiguration)->bootstrap($app); 加载配置

 

laravel 命令行测试 Uncaught ReflectionException: Class config does not exist

标签:图片   autoload   any   require   style   令行   inf   exception   img   

原文地址:https://www.cnblogs.com/eleven24/p/10475177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!