📜  PHP | ctype_punct()函数

📅  最后修改于: 2022-05-13 01:56:34.356000             🧑  作者: Mango

PHP | ctype_punct()函数

ctype_punct() 是PHP中的一个内置函数,用于检查不是空格或字母数字字符。字符串中的每个字符都是可打印的,但字母数字、数字或空白都不会返回 True,否则返回 False。

句法:

bool ctype_punct ( $text )

参数:此函数接受单个参数$text 。它是指定字符串的必需参数。

返回值:如果字符串不包含任何字母数字、数字或空白字符,则返回 True,失败则返回 False。
例子:

Input : GeeksforGeeks
Output : No
Explanation: String (GeeksforGeeks) contains only the alphanumeric characters.

Input : $%^&@
Output : Yes
Explanation: String ($%^&@) contains only the punctuation character.

下面的程序说明了 ctype_punct()函数。
方案一:


输出:
No
Yes

程序 2: ctype_punct()函数的代码接受包含整数和特殊符号的字符串输入数组。


输出:
No
No
No
No
No
Yes

参考: 函数 : PHP 。 PHP