PHP 编辑配置文件的函数

PHP function to edit configuration file

我正在寻找可用于在文本文件中编辑 key/value 对的 PHP 函数。

我想做什么(PHP):

changeValue(key, bar);

并在 setings.txt:

key = foo
key2 =foo2

更改为:

key = bar
key2 = foo2

到目前为止我得到了什么(不工作):

function changeValue($input) {
    $file = file_get_contents('/path/to/settings.txt');
    preg_match('/\b$input[0]\b/', $file, $matches);
    $file = str_replace($matches[1], $input, $file);
    file_put_contents('/path/to/settings.txt', $file);
}

How to update an ini file with php? 让我开始了。我读了很多其他问题,但无法正常工作。

我会使用 JSON,至少要有 JSON_PRETTY_PRINT 选项才能写入,json_decode() 才能读取。

// read file into an array of key => foo
$settings = json_decode(file_get_contents('/path/to/settings.txt'), true);

// write array to file as JSON
file_put_contents('/path/to/settings.txt', json_encode($settings, JSON_PRETTY_PRINT));

这将创建一个文件,例如:

{
    "key": "foo",
    "key2": "bar",
    "key3": 1
}

另一种可能性是 var_export() 使用类似的方法,或者另一个简单的例子来说明您的问题:

// read file into an array of key => foo
$string = implode('&', file('/path/to/settings.txt', FILE_IGNORE_NEW_LINES));
parse_str($string, $settings);

// write array to file as key=foo
$data = implode("\n", $settings);
file_put_contents('/path/to/settings.txt', $data);

所以读入文件,更改设置$setting['key'] = 'bar';然后写出来。

不是使用 file_get_contents 使用文件,而是将每一行读入一个数组。 在你下面看到工作代码。写数组有一点问题,增加了更多的中断,但不确定为什么。

changeValue("key", "test123"); 

function changeValue($key, $value) 
{
    //get each line as an array. 
    $file = file("test.txt"); 

    //go through the array, the value is references so when it is changed the value in the array is changed. 
    foreach($file as &$val) 
    { 
        //check if the string line contains the current key. If it contains the key replace the value. substr takes everything before "=" so not to run if the value is the same as the key. 
       if(strpos(substr($val, 0, strpos($val, "=")), $key) !== false)
        {
           //clear the string
           $val = substr($val, 0, strpos($val, "="));
           //add the value 
           $val .= "= " . $value; 
        }
    }
    //send the changed array writeArray(); 
    writeArray($file); 
 }

function writeArray($array) 
{
    $str = ""; 
    foreach($array as $value)
    {
        $str .= $value . "\n"; 
    }

    //write the array. 
    file_put_contents('test.txt', $str);
}

?>