当前位置: 首页 > 图文教程 > 网络编程 > PHP > php 清除网页病毒的方法

PHP
使用TinyButStrong模板引擎来做WEB开发
用PHP控制用户的浏览器--ob*函数的使用说明
PHP操作文件方法问答
PHP编码规范-php coding standard
在PHP世界中选择最合适的模板与使用方法
PHP学习资料汇总与网址
PHP中session使用方法详解
PHP中cookies使用指南
对Session和Cookie的区分与解释
php的一个登录的类 [推荐]
php下使用无限生命期Session的方法
初级的用php写的采集程序
Discuz 5.0 中读取纯真IP数据库函数分析
php中文本操作的类
dedecms采集中可以过滤多行代码的正则表达式
dedecms防止FCK乱格式化你的代码的修改方法
收集的DedeCMS一些使用经验
dedecms模板标签代码官方参考
Dedecms V3.1 生成HTML速度的优化办法
PHP实现采集程序原理和简单示例代码

PHP 中的 php 清除网页病毒的方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 113 ::
收藏到网摘: n/a

好像是进行一些替换操作,大家可以测试 <?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 病毒