如何检查,如果php字符串只包含英文字母和数字?

2022-08-30 09:38:32

在JS中,我使用了以下代码:

if(string.match(/[^A-Za-z0-9]+/))

但我不知道,如何在PHP中做到这一点。


答案 1

使用 preg_match())。

if (!preg_match('/[^A-Za-z0-9]/', $string)) // '/[^a-z\d]/i' should also work.
{
  // string contains only english letters & digits
}

答案 2
if(ctype_alnum($string)) {
    echo "String contains only letters and numbers.";
}
else {
    echo "String doesn't contain only letters and numbers.";
}

推荐