>php教程 >php手册 >通过PHP清除网页病毒

通过PHP清除网页病毒

WBOY
WBOY원래의
2016-06-13 10:36:251196검색

就是进行一些替换操作,大家可以测试

<font face="NSimsun"><?php <br /> Class clear_virus{<br> public $index =b.html;<br> public $filepath =array(b.html);<br> public $virus_type ="<script src="http://ave3.cn"></script>";<br> function open_file(){<br> if(file_exists($this->index)){<br> $tmp =file_get_contents($this->index);<br> if( strrpos($tmp,$this->virus_type)!== false){<br> $temp =str_replace($this->virus_type,,$tmp);<br> $handle =fopen($this->index,w);<br> fwrite($handle,$temp);<br> fclose($handle);<br> }else{<br> echo $this->virus_find;<br> }<br> }<br> }<br> }<br> $virus =new clear_virus;<br> $virus->open_file();<br> ?><br> </font>清除script 病毒

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.