php校验
程序员文章站
2022-06-13 14:01:48
...
//校验 function filters($grams){ if(get_magic_quotes_gpc()) { $resgram = trim($grams); $resgram = htmlspecialchars($resgram); } else { $resgram = addslashes(trim($grams)); $resgram = htmlspecialchars($resgram); } return $resgram; } 调用 $c
//校验
function filters($grams){
if(get_magic_quotes_gpc()) {
$resgram = trim($grams);
$resgram = htmlspecialchars($resgram);
} else {
$resgram = addslashes(trim($grams));
$resgram = htmlspecialchars($resgram);
}
return $resgram;
}
调用
$channel_id_g= filters($_SESSION['channel_id_g']);//渠道id
上一篇: 在Oracle的XMLType里查询数据
下一篇: 如何在php中正确的使用json