本文介绍了PHP追加到特定位置的文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在PHP我正在打开一个文本文件,并追加到它。不过,我需要的文件在年底前追加3个字符。
换句话说,我需要添加/从文件中一个特定的地方写。

In php i am opening a text file and appending to it. However I need to append 3 chars before the end of file.In other words i need to append/write from a specific place in the file.

任何一个可以帮助?

祝商祺
Luben

Best RegardsLuben

推荐答案

您需要打开要编辑的文件,争取到所需的位置,然后写入文件,例如:

You need to open the file for edit, seek to the desired position and then write to the file, eg.:

<?php
  $file = fopen($filename, "c");
  fseek($file, -3, SEEK_END);
  fwrite($file, "whatever you want to write");
  fclose($file);
?>

希望有所帮助。

这篇关于PHP追加到特定位置的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 01:09