这是我的文件  然后文件中 我把hello world替换成了你好,把this is test 替换成了测试。
但是每次只替换最下面的内容,hello world必须删除最下面的命令然后执行才可以替换,
求助一下怎么才可以替换~<?php
$str=file_get_contents("f:soft\\test.txt");//打开文件
$mode="/he.*rld/";
$arr=preg_replace($mode,'你好',$str);
$mode1="/th.*test/i";
$arc=preg_replace($mode1,'测试',$str);
file_put_contents("f:soft\\test.txt",$arr);//把替换的内容写到.txt文件中
file_put_contents("f:soft\\test.txt",$arc);
?>