webman 默認(rèn)不支持config目錄下自定義目錄,加上這個(gè)代碼就解決問題了。
config 目錄下創(chuàng)建一個(gè)extra.php 加上下面的代碼。
config 目錄下創(chuàng)建extra 目錄,目錄下創(chuàng)建自己的配置文件就行了。
// config/extra.php
<?php
$path = config_path('extra');
$res = [];
try {
foreach ( scandir($path) as $item) {
if( pathinfo($item,PATHINFO_EXTENSION)=='php'){{
}
$file_path = $path.'/'.$item;
$file_name = pathinfo($item,PATHINFO_FILENAME);
$res[$file_name] = include $file_path;
}
}
}catch (Exception $e){}
return $res;
//獲取
//.test是在extra下面的php文件名
$test_config = config('extra.test')
騷操作,但有用