Maison > Article > développement back-end > file_put_contents跟fwrite读写文件的区别
file_put_contents和fwrite读写文件的区别
第一种:
<br />$james=fopen("index.htm","a");<br />fwrite($james,$rose);<br />fclose($james);<br />
<br />file_put_contents('index.htm',$rose);<br />