代码拉取完成,页面将自动刷新
<?php
/**
* 文件异常排查
*/
header('Content-Type: text/html; charset=utf-8');
$auto = 1;
define('WEBPATH', dirname(__FILE__).'/');
if (is_file(WEBPATH.'config/database.php')) {
define('ROOTPATH', (dirname(__FILE__)));
} else {
define('ROOTPATH', dirname(dirname(__FILE__)));
}
echo '检查开始:<font color=red>红色字体</font>表示错误问题、<font color=blue>蓝色字体</font>表示轻微<hr>';
checkdir(ROOTPATH);
echo '<hr>检查完毕('.$auto.'),没有出现红色字体的提示就表示一切正常。';
function checkdir($basedir){
if ($dh = opendir($basedir)) {
while (($file = readdir($dh)) !== false) {
if ($file != '.' && $file != '..'){
if (!is_dir($basedir."/".$file)) {
if (trim(strtolower(strrchr($file, '.')), '.') == 'php') {
$rt = checkBOM("$basedir/$file");
if ($rt) {
echo "文件:$basedir/$file ".$rt." <br>";
}
}
}else{
$dirname = $basedir."/".$file;
checkdir($dirname);
}
}
}
closedir($dh);
}
}
function checkBOM ($filename) {
global $auto;
$contents = file_get_contents($filename);
$charset[1] = substr($contents, 0, 1);
$charset[2] = substr($contents, 1, 1);
$charset[3] = substr($contents, 2, 1);
$auto++;
if (ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191) {
return ("<font color=red>存在严重问题</font>");
} elseif ($charset[1] != '<') {
return ("<font color=blue>PHP文件不规范</font>");
} else {
return '';
};
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。