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

php如何修改配置文件

程序员文章站 2022-04-01 15:28:40
...
Config.php代码如下:
  '20120823',	'secretKey' => '92fe5927095eaac53cd1aa3408da8135',	'areaname' => 'China',);


现在想写个Common.php定义setConfig($fileName, $value)方法,去修改areaname的值。其中$fileName为Config.php文件名称, $value为更换的值,不知道具体怎么写??


回复讨论(解决方案)

file_get_contents()
file_put_contents()

function setConfig($fileName, $value) {  ob_start();  $a = @include($fileName);  ob_end_clean();  if(! is_array($a)) trigger_error("Invalid data file", E_USER_ERROR);  $a['areaname'] = $value;  file_put_contents($fileName, '
但是由于你的方案的限制,这个函数有着不通用的毛病
比如要想修改 secretKey 就不可以了
建议改写做
function setConfig($key, $value, $fileName='config.php') {  ob_start();  $a = @include($fileName);  ob_end_clean();  if(! is_array($a)) trigger_error("Invalid data file", E_USER_ERROR);  $a[$key] = $value;  file_put_contents($fileName, '

楼上正解,好的开发者一定在通用性上有想法