Я ищу функцию 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);
}
Как обновить INI-файл с помощью 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);
}
?>