读写数组类型配置文件
程序员文章站
2022-04-27 12:59:30
...
// 写入配置文件的变量 public static function rewriteConfig($key, $value) { $path = app_path() . '/storage/Config.php'; $contents = file_get_contents($path); $contents = str_replace(self::loadConfig($key), $value, $contents); file_put_contents($path, $contents); } // 读取配置文件的变量 public static function loadConfig($key) { $Config = require(app_path() . '/storage/Config.php'); return $Congig[$key]; }