当前位置:首页 > PHP教程 > php高级应用 > 列表

php批量替换程序实例代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-27 14:54:47 浏览: 评论:0 

本程序可以实现批量替换目录中所有文件中的内容或用于打量给挂了木马文件批量替换与更新了,希望文章对各位同学有所帮助.

php 批量替换程序实例代码如下:

  1. <?php 
  2. /*************************************************************************** 
  3.                              batch-replace, v1.1 
  4.  *************************************************************************** 
  5.     file:                batch-replace_utf8.php 
  6.     functionality:       本程序可以扫描指定目录的所有文件,进行内容替换。可用于被批量挂马的删除以及批量更新页面某些内容。  
  7.                          本程序适用于对UTF-8的页面进行修改。 
  8.                           
  9.  
  10.  
  11. /*************************************************************************** 
  12.  * 
  13.  *   This program is free software; you can redistribute it and/or modify 
  14.  *   it under the terms of the GNU Lesser General Public License as published by 
  15.  *   the Free Software Foundation; either version 2 of the License, or 
  16.  *   (at your option) any later version. 
  17.  * 
  18.  ***************************************************************************/ 
  19.  
  20. set_time_limit(3600); 
  21.  
  22.  
  23. if($_POST['Submit']=='开始执行操作'){ 
  24.   $dir = $_POST['searchpath']; 
  25.   $shortname = $_POST['shortname']; 
  26.   $isall = $_POST['isall']; 
  27.   $isreg = $_POST['isreg']; 
  28.    
  29. if (!get_magic_quotes_gpc()) { 
  30.   $sstr = $_POST['sstr']; 
  31.   $rpstr = $_POST['rpstr']; 
  32. else { 
  33.   $sstr = stripslashes($_POST['sstr']); 
  34.   $rpstr = stripslashes($_POST['rpstr']); 
  35. }     
  36.  
  37.  
  38.   //分析shortname 
  39.   $arrext = explode ("|",$shortname); 
  40.  
  41.  
  42.   if (!is_dir($dir)) return
  43.   if ($sstr == ''return
  44.  
  45.   //把末尾的/去掉 
  46.   if(substr($dir,-1)=='/'$dir = substr($dir,0,strrpos($dir,"/")); 
  47.  
  48.   //罗列所有目录 
  49.   if ($isall == 1){ 
  50.     hx_dirtree($dir); 
  51.   }else
  52.     hx_dealdir($dir); 
  53.  
  54.   } 
  55.  
  56. exit(); 
  57.  
  58.  
  59. function hx_dirtree($path="."){ 
  60.   global $sstr,$rpstr,$isreg,$arrext
  61.  
  62.  
  63.   $d = dir($path); 
  64.   while(false !== ($v = $d->read())) { 
  65.     if($v == "." || $v == ".."continue
  66.     $file = $d->path."/".$v
  67.     if(is_dir($file)) { 
  68.       echo "<p>$v</p>"; hx_dirtree($file); 
  69.     }else
  70.         $ext=substr(strrchr($v,"."), 1); 
  71.         if( in_array($ext , $arrext) ){ 
  72.           echo "<li>$file "
  73.           $body = file_get_contents($file); 
  74.           if($isreg == 1){ 
  75.           $body2 = preg_replace($sstr$rpstr$body); 
  76.           }else
  77.           $body2 = str_replace($sstr$rpstr$body); 
  78.           } 
  79.           if($body != $body2 && $body2 != ''){ 
  80.             tofile($file,$body2); 
  81.             echo ' OK'
  82.           }else
  83.             echo ' NO'
  84.           } 
  85.           echo '</li>'
  86.         } 
  87.     } 
  88.   } 
  89.   $d->close(); 
  90.  
  91. function hx_dealdir($dir){ 
  92.   global $sstr,$rpstr,$isreg,$arrext
  93.     if ($dh = opendir($dir)) { 
  94.     while (false !== ($file = readdir($dh))) { 
  95.       if(filetype($dir.'/'.$file)=='file'){ 
  96.  
  97.         $ext=substr(strrchr($file,"."), 1); 
  98.         if( in_array($ext , $arrext) ){ 
  99.  
  100.           echo "<li>$file "
  101.           $body = file_get_contents($dir.'/'.$file);         
  102.           if($isreg == 1){ 
  103.           $body2 = preg_replace($sstr$rpstr$body); 
  104.           }else
  105.           $body2 = str_replace($sstr$rpstr$body); 
  106.           } 
  107.           if($body != $body2 && $body2 != ''){             
  108.             tofile($dir.'/'.$file,$body2); 
  109.             echo ' OK'
  110.           }else
  111.             echo ' NO'
  112.           } 
  113.           echo '</li>'
  114.         } 
  115.       } 
  116.     } 
  117.     closedir($dh); 
  118.     } 
  119.  
  120. //把生成文件的过程写出函数 
  121. function tofile($file_name,$file_content){ 
  122.  if (is_file ($file_name)){ 
  123.   @unlink ($file_name); 
  124.  } 
  125.   $handle = fopen ($file_name,"w"); 
  126.   if (!is_writable ($file_name)){ 
  127.     return false; 
  128.   } 
  129.   if (!fwrite ($handle,$file_content)){ 
  130.     return false; 
  131.   } 
  132.   fclose ($handle); //关闭指针 
  133.   return $file_name
  134. ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  135. <html xmlns="http://www.w3.org/1999/xhtml"
  136. <head> 
  137. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
  138. <title>批量替换程序|木马批量删除_www.itlearner.com</title> 
  139. <style type="text/css"
  140. body{background:#FFFFFF;color:#000;font-size:12px;} 
  141. #top{text-align:center;} 
  142. h1,p,form{margin:0;padding:0;} 
  143. h1{font-size;14px;} 
  144. </style> 
  145. </head> 
  146. <body> 
  147.   <div id="top"
  148. <h1>批量替换程序(UTF-8版)</h1> 
  149. <div>本程序可以扫描指定目录的所有文件,进行<strong>内容替换</strong>。可用于被批量挂马的删除以及批量更新页面某些内容。<br/> 
  150. 在文件数量非常多的情况下,本操作比较占用服务器资源,请确脚本超时限制时间允许更改,否则可能无法完成操作。</div> 
  151.   </div> 
  152.  
  153.  
  154. <form action="<?=$_SERVER['SCRIPT_NAME']?>" name="form1" target="stafrm" method="post"
  155. <table width="95%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#666666"
  156.   <tr> 
  157.     <td width="10%" bgcolor="#FFFFFF"><strong>&nbsp;起始根路径:</strong></td> 
  158.     <td width="90%" bgcolor="#FFFFFF"><input name="searchpath" type="text" id="searchpath" value="./test" size="20" /> 
  159.       点表示当前目录,末尾不要加/ <input type="checkbox" name="isall" value="1" />包含此目录下所有目录</td> 
  160.   </tr> 
  161.   <tr> 
  162.     <td bgcolor="#FFFFFF"><strong>&nbsp;文件扩展名:</strong></td> 
  163.     <td bgcolor="#FFFFFF"><input name="shortname" type="text" id="shortname" size="20" value="php|htm" /> 
  164.       多个请用|隔开</td> 
  165.   </tr> 
  166.   <tr id="rpct"
  167.     <td height="64" colspan="2" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="1" cellpadding="1"
  168.       <tr bgcolor="#EDFCE2"
  169.         <td colspan="4"><strong>内容替换选项:</strong> <input type="checkbox" name="isreg" value="1" />使用正则表达式</td> 
  170.       </tr> 
  171.       <tr> 
  172.         <td colspan="4">替换内容类默认使用字符串替换,也可以使用正则表达式(需勾选)。"替换为"不填写的话,就表示删除"替换内容"。</td> 
  173.       </tr> 
  174.       <tr> 
  175.         <td width="10%">&nbsp;替换内容:</td> 
  176.         <td width="36%"><textarea name="sstr" id="sstr" style="width:90%;height:45px"></textarea></td> 
  177.         <td width="10%">替 换 为:</td> 
  178.         <td><textarea name="rpstr" id="rpstr" style="width:90%;height:45px"></textarea></td> 
  179.       </tr> 
  180.     </table></td> 
  181.   </tr> 
  182.   <tr> 
  183.     <td colspan="2" height="20" align="center" bgcolor="#E2F5BC"><input type="submit" name="Submit" value="开始执行操作" class="inputbut" /></td>//开源代码phpfensi.com 
  184.   </tr> 
  185. </table> 
  186.   </form> 
  187. <table width="95%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#666666"
  188.   <tr bgcolor="#FFFFFF"
  189.     <td id="mtd"
  190.      <div id='mdv' style='width:100%;height:100;'
  191.         <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe> 
  192.       </div> 
  193.       <script type="text/javascript"
  194.      document.all.mdv.style.pixelHeight = screen.height - 450; 
  195.      </script>    </td> 
  196.   </tr> 
  197. </table> 
  198.  
  199. </body> 
  200. </html> 

Tags: php批量替换 php替换程序

分享到: