php在文件指定行插入数据实例

对于php文件操作那么关于在指定的位置插入数据就比较复杂了,下面我们就来看看关系在文件指定行插入数据实例吧,实例代码如下:

  1. $arrInsert = insertContent("array.php", "abcdef", 3, 10);
  2. unlink("array.php");
  3. foreach($arrInsert as $value)
  4. {
  5. file_put_contents("array.php", $value, FILE_APPEND);
  6. }
  7. function insertContent($source, $s, $iLine, $index) {
  8. $file_handle = fopen($source, "r");
  9. $i = 0;
  10. $arr = array();
  11. while (!feof($file_handle)) {
  12. $line = fgets($file_handle);
  13. ++$i;
  14. if ($i == $iLine) {
  15. if($index == strlen($line)-1)
  16. $arr[] = substr($line, 0, strlen($line)-1) . $s . " ";
  17. else //开源代码phpfensi.com
  18. $arr[] = substr($line, 0, $index) . $s . substr($line, $index);
  19. }else {
  20. $arr[] = $line;
  21. }
  22. }
  23. fclose($file_handle);
  24. return $arr;
  25. }

在多数据我们存储数据都是用数据库教程来操作,上面我们就是把数据以X格式存在文本中了,现在我要像操作数据库一样的,想删除那行就那行,保存数据也一样,怎么读取第几行就第几行了,所以我就写出来了php 在文件指定行插入数据实例.

$iLine:为第几行,$index为第几个字符之前.