方法一
代碼如下
if(preg_match("/^d*$/"
{
echo "全數字
";
}
if(preg_match("/^[a
{
echo "全字母
";
}
if(preg_match("/^[a
{
echo "有數字有字母
";
}
中文漢字
代碼如下
$username=$_REQUEST[
if(!preg_match("/^[a
{
echo"
exit;
}
上面是比較散的
代碼如下
$input_tag = $_POST[
$input_tag = explode(
$input_tag = array_unique($input_tag);
$input_tag = array_diff($input_tag
$leng =
$true =
$comma =
foreach ($input_tag as $v) {
if (strlen($v) >
$leng
$comma =
}
$true
$comma =
}
$true = str_replace(
if (!preg_match(
echo "<script>alert(
exit;
}
if (!empty($leng)) {
echo "<script>alert(
exit;
}
From:http://tw.wingwit.com/Article/program/PHP/201311/21332.html