Laravel 5.6 console使用 載入第三方類或檔案
關於console的基礎是有此處不贅述console的方便之處在於,需要自測的時候,不需要瀏覽器 不需要路由 ,只需要終端!
php artisan commands
載入自定義檔案
比如新建app/Helpers/const.php
define('CONST_TEST', '常量');
如果在console直接使用CONST_TEST,會報未定義。
配置app/Console/Kernel.php:
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
**require base_path('app/Helpers/const.php');**
}
結語
God helps those who help themselves!
本作品採用《CC 協議》,轉載必須註明作者和本文連結