php如何修改文件里的内容(指定修改)

2024-12-18 12:57:17
推荐回答(3个)
回答1:

$origin_str = file_get_contents('路径/文件.txt');
$update_str = str_replace('qwe=0', 'qwe=1', $orgin_str);
file_put_contents('路径/文件.txt', $update_str);
?>

回答2:

可以把文件内容显示到 一个 textarea 中,然后修改内容在写入

回答3:

$data = file_get_contents('文件.txt');
$data_new = str_replace('qwe=0', 'qwe=1', $data);
$fp = fopen('文件.txt', 'r+');
fwrite($fp, $data_new);
fclose($fp);