php中通过方法进行插入数据,php实现文件指定行插入数据的方法

  • Post author:
  • Post category:php


欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 php实现文件指定行插入数据的方法,用php实现在文件指定行插入数据的方法实现起来比较复杂,看下面的代码 ?php $arrInsert = insertContent(“array.php”, “abcdef”, 3, 10); unlink(“array.php”)

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

php实现文件指定行插入数据的方法,用php实现在文件指定行插入数据的方法实现起来比较复杂,看下面的代码

$arrInsert = insertContent(“array.php”, “abcdef”, 3, 10);

unlink(“array.php”);

foreach($arrInsert as $value)

{

file_put_contents(“array.php”, $value, FILE_APPEND);

}

function insertContent($source, $s, $iLine, $index) {

$file_handle = fopen($source, “r”);

$i = 0;

$arr = array();

while (!feof($file_handle)) {

$line = fgets($file_handle);

++$i;

if ($i == $iLine) {

if($index == strlen($line)-1)

$arr[] = substr($line, 0, strlen($line)-1) . $s . “n”;

else

$arr[] = substr($line, 0, $index) . $s . substr($line, $index);

}else {

$arr[] = $line;

}

}

fclose($file_handle);

return $arr;

}

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

?>

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

test.jsp?url=http%3A%2F%2Fwww.chinaitlab.com%2Fcms%2Fimages%2Flogo14.gif&refer=http%3A%2F%2FLinux.chinaitlab.com%2FPHP%2F908656.html

本文原创发布php中文网,转载请注明出处,感谢您的尊重!