PHP5入门之读写文本文件

发布时间:2020-04-22编辑:脚本学堂
本文介绍了php5入门之读写文本文件的例子,比较简单,有关php中fopen、fread与fwrite函数的用法,有需要的朋友参考下。

例子,php读写文本文件。 
 

复制代码 代码示例:
===============
写文件
===============
$realFiePath = "D:/test.txt";
$fileContent = "Test 2011 03 12.";
 
$file = fopen($realFiePath, 'wb');
fwrite($file, $fileContent );
fclose($file);
 
===============
读文件
===============
$realFiePath = "D:/test.txt";
$size = intval(sprintf("%u", filesize($realFiePath)));
$handle = fopen($realFiePath, "rb");
$fileContent = "";
  while (!feof($handle)) {
      $fileContent .= fread($handle, $size);
      ob_flush();
      flush();
  }
  fclose($handle);
 
echo $fileContent ;