时间:2021-07-01 10:21:17 帮助过:9人阅读
function inject_check($content){
$check=eregi('select|insert|update|delete|\'|\/\*|\*|\.\.\/|\.\/|union|into|load_file|outfile',$content);
if($check){
//echo "你输入的内容有可能对本站造成危害!";
return true;
}else{
return false;
}
}