PHP | ctype_alnum()(检查字母数字)
PHP中的 ctype_alnum()函数用于检查给定字符串/文本的所有字符是否为字母数字。如果所有字符都是字母数字,则返回 TRUE,否则返回 FALSE。
句法:
bool ctype_alnum ($text)
使用的参数:
- $text :它是指定字符串的强制参数。
例子:
Input : Geeks
Output : Yes
Explanation : String "Geeks" is alphanumeric.
Note: Read Standard c local letter.
Input : '%%%Contribute_article on GFG!!!'
Output : No
Explanation : String contains Special characters.
Note: Except string or digit, if we input anything then it will return FALSE.
下面的程序说明了 ctype_alnum()函数。
程序:1
驱动代码ctype_alnum()()函数以便更好地理解。
输出:
Yes
程序: 2驱动 ctype_alnum()函数的代码,其中输入将是字符串整数数组,带有特殊符号的字符串。
输出:
Yes
No
Yes
Yes
No
No
参考: 函数 : PHP 。 PHP