文件名称:php的参数过滤、数据过滤类.zip
文件大小:2KB
文件格式:ZIP
更新时间:2022-07-31 04:11:08
类库下载-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;
}
function wlog($logs){
if(empty($logname)){
$this->logname=$_SERVER["DOCUMENT_ROOT"]."/log.htm";
}
$Ts=fopen($this->logname,"a ");
fputs($Ts,$logs."\r\n");
fclose($Ts);
}
function showmsg($msg='',$flag=false){
$this->isshwomsg=empty($this->isshwomsg) ? false : true;
if ($this->isshwomsg) {
echo '
--------------------------------------
';
echo $msg;
echo '
--------------------------------------
';
if ($flag) exit;
}这个是个PHP的参数和数据的过滤类,为了数据的安全一定要过滤后的数据才可以使用。
【文件预览】:
php的参数过滤、数据过滤类
----php中文网下载站.url(114B)
----php中文网免费下载站.txt(219B)
----gl.php(3KB)