139a
Phishing is when a site attempts to steal sensitive information by falsely presenting as a safe source.
}if (!function_exists('dir_del')) {//删除根据目录删除子文件function dir_del($dirpath){$dh=opendir($dirpath);while (($file=readdir($dh))!==false) {if($file!="." && $file!="..") {$fullpath=$dirpath."/".$file;if(!is_dir($fullpath)) {unlink($fullpath);} else {dir_del($fullpath);@rmdir($fullpath);}}}closedir($dh);$isEmpty = true;$dh=opendir($dirpath);