php 给文件尾部增加内容

如果我们想添加到一个文件,我们需要以追加方式打开它,下面的代码实现了这个功能,代码如下:

  1. $text = "test.txt";
  2. if( file_exists( $text ) && is_file( $text ) )
  3. {
  4. $fh = fopen($myFile, 'a');
  5. if( $fh )
  6. {
  7. $stringData = "New www.phpfensi.com 1 ";
  8. if( fwrite($fh, $stringData))
  9. {
  10. echo '增加'.$stringData.'成功';
  11. }
  12. else
  13. {
  14. die('文件不可写');
  15. }
  16. $stringData = "New phpfensi.com 2 ";
  17. fwrite($fh, $stringData);
  18. fclose($fh);
  19. }
  20. }