作者:changless | 来源:互联网 | 2023-10-13 13:03
篇首语:本文由编程笔记#小编为大家整理,主要介绍了PHP 清洁输入相关的知识,希望对你有一定的参考价值。
function cleanInput($input) {
$search = array(
'@@si', // Strip out Javascript
&#39;@<[\/\!]*?[^<>]*?>@si&#39;, // Strip out HTML tags
&#39;@@siU&#39;, // Strip style tags properly
&#39;@@&#39; // Strip multi-line comments
);
$output = preg_replace($search, &#39;&#39;, $input);
return $output;
}
?>