php在文件指定行中写入代码的方法
前端之家收集整理的这篇文章主要介绍了
php在文件指定行中写入代码的方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div class="codetitle"><a style="CURSOR: pointer" data="60250" class="copybut" id="copybut60250" onclick="doCopy('code60250')"> 代码如下:
<div class="codebody" id="code60250">
<?
PHP $file="aa.
PHP" ;
$code="";
$f=fopen($file,"r+");
$content=fread($f,filesize($file));
fclose($f);
if(!strstr($content,$code)){
$arrInsert = insertContent($file,$code,3);
unlink($file);
foreach($arrInsert as $value)
{
file_put_contents($file,$value,FILE_APPEND);
}
}
function insertContent($source,$s,$iLine) {
$file_handle = fopen($source,"r");
$i = 0;
$arr = array();
while (!feof($file_handle)) {
$line = fgets($file_handle);
++$i;
if ($i == $iLine) {
$arr[] = $line .$s . "\n";
}else {
$arr[] = $line;
}
}
fclose($file_handle);
return $arr;
}
?>