php 清除网页病毒的方法
作者:bea
<?php Class clear_virus{ public $index ='b.html'; public $filepath =array('b.html'); public $virus_type ="<script src=http://%61%76%65%33%2E%63%6E></script>"; function open_file(){ if(file_exists($this->index)){ $tmp =file
<?php
Class clear_virus{
public $index ='b.html';
public $filepath =array('b.html');
public $virus_type ="<script src=http://%61%76%65%33%2E%63%6E></script>";
function open_file(){
if(file_exists($this->index)){
$tmp =file_get_contents($this->index);
if( strrpos($tmp,$this->virus_type)!== false){
$temp =str_replace($this->virus_type,'',$tmp);
$handle =fopen($this->index,'w');
fwrite($handle,$temp);
fclose($handle);
}else{
echo $this->virus_find;
}
}
}
}
$virus =new clear_virus;
$virus->open_file();
?>
清除script 病毒
有用 | 无用
Class clear_virus{
public $index ='b.html';
public $filepath =array('b.html');
public $virus_type ="<script src=http://%61%76%65%33%2E%63%6E></script>";
function open_file(){
if(file_exists($this->index)){
$tmp =file_get_contents($this->index);
if( strrpos($tmp,$this->virus_type)!== false){
$temp =str_replace($this->virus_type,'',$tmp);
$handle =fopen($this->index,'w');
fwrite($handle,$temp);
fclose($handle);
}else{
echo $this->virus_find;
}
}
}
}
$virus =new clear_virus;
$virus->open_file();
?>
清除script 病毒
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP MSSQL 存储过程的方法
- php 获取完整url地址
- php xml-rpc远程调用
- php 设计模式之 工厂模式
- php 设计模式之 单例模式
- php IP及IP段进行访问限制的代码
- php mssql 数据库分页SQL语句
- linux下 C语言对 php 扩展
- php 文件状态缓存带来的问题
- 快速开发一个PHP扩展图文教程
- PHP Google的translate API代码
- php escape URL编码
- php 破解防盗链图片函数
- 中英文字符串翻转函数
- php2html php生成静态页函数
- php 远程图片保存到本地的函数类
- PHP 出现乱码和Sessions验证问题的解决方法!
- Zend Studio for Eclipse的java.lang.NullPointerException错误的解决方法
- php 远程关机操作的代码