PHP简单读取和写入文件的方法

网络整理 - 08-16
读取文件内容并写入变量$contents:

<?php
$fp=fopen('file.txt','r');
$contents=fread($fp,filesize('file.txt'));
fclose($fp);
?>



  将变量$contents的内容写入文件:

<?php
$content="需要写入的内容";
$fp=fopen('file.txt','wb+');
fwrite($fp,$content);
fclose($fp);
?>



  当然,我们也可以使用file_get_contents和file_put_contents来读写文件。