$origin_str = file_get_contents('路径/文件.txt');
$update_str = str_replace('qwe=0', 'qwe=1', $orgin_str);
file_put_contents('路径/文件.txt', $update_str);
?>
可以把文件内容显示到 一个 textarea 中,然后修改内容在写入
$data = file_get_contents('文件.txt');
$data_new = str_replace('qwe=0', 'qwe=1', $data);
$fp = fopen('文件.txt', 'r+');
fwrite($fp, $data_new);
fclose($fp);