文件名称:php 参数过滤、数据过滤详解
文件大小:49KB
文件格式:PDF
更新时间:2024-01-08 17:33:36
hp php 参数
下面通过一段代码给大家介绍php参数过滤
class mysafe{
public $logname;
public $isshwomsg;
function __construct(){
set_error_handler('MyError',E_ALL);
//-----
}
function MyError($errno, $errstr, $errfile, $errline){
echo "Error number: [$errno],error on line $errline in $errfile
";
exit;
}
f