欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

读写数组类型配置文件

程序员文章站 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];
}