在PHP中存储可轻松编辑的配置数据的最快方法?

与存储PHP变量的JSON相比,序列化更好。

var_export可用于保存配置文件,而'include'可用于加载配置文件信息。

这是一种以编程方式保存配置数据且易于读取/写入的简便方法。以下是相同的示例代码-

config.php

return array(
   'var_1'=> 'value_1',
   'var_2'=> 'value_2',
);

test.php

$config = include 'config.php';
$config['var_2']= 'value_3';
file_put_contents('config.php', '<?php return ' . var_export($config, true) . ';');

除了上面的test.php,下面的代码也可以使用-

$config = include 'config.php';
$config['var_2']= 'value_3';
file_put_contents('config.php', '$config = ' . var_export($config));

更新的config.php包含以下代码-

return array(
   'var_1'=> 'value_1',
   'var_2'=> 'value_3',
);