復制代碼 代碼如下:
$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為第幾個字符之前