정규식으로 특수문자를 체크한다.
$string="[aabb]";
$result = preg_match("/[ #\&\+\-%@=\/\\\:;,\.'\"\^`~\_|\!\?\*$#<>()\[\]\{\}]/i", $string);
if($result == true)
{
echo "특수문자 있음";
}
else
{
echo "특수문자 없음";
}
정규식으로 특수문자를 체크한다.
$string="[aabb]";
$result = preg_match("/[ #\&\+\-%@=\/\\\:;,\.'\"\^`~\_|\!\?\*$#<>()\[\]\{\}]/i", $string);
if($result == true)
{
echo "특수문자 있음";
}
else
{
echo "특수문자 없음";
}