您好,登錄后才能下訂單哦!
本篇內容主要講解“easyswoole如何實現載入自定義配置文件夾所有配置文件的封裝”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“easyswoole如何實現載入自定義配置文件夾所有配置文件的封裝”吧!
//類文件路徑 //easyswoole/vendor/easyswoole/easyswoole/src/Config.php//引入File組件use EasySwoole\Utility\File;//在類中定義方法/** * 載入自定義配置文件夾里的所有配置文件 * @param string $dirPath 配置文件夾 * @param bool $merge 是否將內容合并入主配置 * @author : lqx_chris */public function loadDir (string $dirPath, bool $merge = false){if(is_dir($dirPath)){$fileList = File::scanDirectory($dirPath);foreach ($fileList['files'] as $filePath){$this->loadFile($filePath,$merge);}}}
例:在 cache.php 和 database.php 配置文件中,我們簡單寫一些東西
//cache.phpreturn [ 'REDIS'=>'redis',];//database.phpreturn [ 'MYSQL' => ['host' => '127.0.0.1','port' => '3306','user' => 'root','timeout' => '5','charset' => 'utf8mb4','password' => '123456','database' => 'easyswoole',],];
<?phpnamespace EasySwoole\EasySwoole;use EasySwoole\EasySwoole\Swoole\EventRegister;use EasySwoole\EasySwoole\AbstractInterface\Event;use EasySwoole\Http\Request;use EasySwoole\Http\Response;use EasySwoole\ORM\Db\Config as ORMConfig;use EasySwoole\ORM\DbManager;use EasySwoole\ORM\Db\Connection;class EasySwooleEvent implements Event{public static function initialize(){// TODO: Implement initialize() method.date_default_timezone_set('Asia/Shanghai');//載入配置文件夾文件Config::getInstance()->loadDir(EASYSWOOLE_ROOT . '/Config', true);//配置ORM$config = new ORMConfig(Config::getInstance()->getConf("MYSQL"));//注冊ORM連接池DbManager::getInstance()->addConnection(new Connection($config));}public static function onRequest(Request $request, Response $response): bool{// TODO: Implement onRequest() method.// 請求進來時輸出一下配置信息,看看是否成功var_dump(Config::getInstance()->getConf());return true;}}
//啟動$ php easyswoole start//請求Easyswoolelocalhost:9501//輸出信息中,除了主配置,我們可以看到我們自己文件夾的配置也合并載入了 ["MYSQL"]=> array(7) {["host"]=>string(9) "127.0.0.1"["port"]=>string(4) "3306"["user"]=>string(4) "root"["timeout"]=>string(1) "5"["charset"]=>string(7) "utf8mb4"["password"]=>string(5) "12345"["database"]=>string(6) "easyswoole" } ["REDIS"]=> string(5) "redis"
到此,相信大家對“easyswoole如何實現載入自定義配置文件夾所有配置文件的封裝”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。