我是靠谱客的博主 淡然小白菜,这篇文章主要介绍php 文件防篡改,防篡改php文件校验程序,现在分享给大家,希望可以做个参考。

/**

* 校验线上源文件是否和本地的一致

* User: Administrator

* Date: 2015/11/26

* Time: 9:30

*/

include_once ‘functions.php‘;

class SrcVerifier

{

var $md5_files = array();

var $total = 0;

public function scan($dir, $prefix_len, $excepts=array())

{

if ( $handle = opendir($dir) ) {

while ( ($file = readdir($handle)) !== false ) {

if ( $file != ".." && $file != "." && $file != ".svn" && $file!=".buildpath" && $file!=".htaccess" && $file!=".idea" && $file!=".project" && $file!=".settings") {

$real_location = $dir . "/" . $file;

$relative_location = substr($real_location, $prefix_len);

最后

以上就是淡然小白菜最近收集整理的关于php 文件防篡改,防篡改php文件校验程序的全部内容,更多相关php内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(199)

评论列表共有 0 条评论

立即
投稿
返回
顶部