我有一个带有以下原型的文件
<?php
$config['some_key']='some_value';
$config['some_other_key']='some_other_value';
//End of file config.php
我有一个文件可以获取这些变量的值并将其显示给管理员,然后如果他愿意,他会更改其中的一些设置。所以我必须更新 config.php 文件才能保存更改。例如some_value
必须更改为new_value
这样:
<?php
$config['some_key']='new_value';
$config['some_other_key']='some_other_value';
//End of file config.php
我进行了一些研究,发现我的一个选择是使用file_get_contents()
读取文件preg_replace()
来应用我的更改再次写入文件,但我不知道如何为我的目的制作模式和替换。我真的很感谢你们的任何帮助,在此先感谢。