清理webzip标记

<?php 
 
set_time_limit(0);
 
traverse();
 
 
function traverse($path = '.',$grade=0) {
 
 $current_dir = opendir($path);    //opendir()返回一个目录句柄,失败返回false
 while(($file = readdir($current_dir)) !== false) {    //readdir()返回打开目录句柄中的一个条目
	 $sub_dir = $path . DIRECTORY_SEPARATOR . $file;    //构建子目录路径
	 if($file == '.' || $file == '..') {
		 continue;
	 } else if(is_dir($sub_dir)) {    //如果是目录,进行递归
		 
		traverse($sub_dir,$grade+1);
	 } else {    //如果是文件,直接输出 
		$filepath= $path ."/". $file;  
		if(preg_match("/html$/",$filepath,$match)  )
		{
			 
 
			$cc = file_get_contents($filepath);  
			if(preg_match("/\<\!-- Copyright [^\>]+ Spidersoft Ltd --\>/",$cc,$match))
			{ 
				$ccdst = preg_replace("/\<\!-- Copyright [^\>]+ Spidersoft Ltd --\>/","<!-- Copyright",$cc);
				file_put_contents($filepath,$ccdst);
				 
			} 
		}
	 }
 }
}
 
?>

你可能感兴趣的:(清理webzip标记)