PHP | ctype_cntrl()函数
ctype_cntrl() 是PHP中的一个内置函数,用于检查字符串/文本中的所有字符是否为控制字符。控制字符例如换行符、制表符、转义符。
句法:
bool ctype_cntrl ( $str )
参数:此函数接受单个参数 $str。它是指定字符串的必需参数。
返回值:如果字符串仅包含控制字符,则返回 True,失败则返回 False。
例子:
Input: GeeksforGeeks
Output: No
Explanation: String (GeeksforGeeks) contains only the alphanumeric characters.
Input: \n\t
Output: Yes
Explanation: String (\n\t) contains only the control character.
下面的程序说明了 ctype_cntrl()函数。
方案一:
php
php
输出:
No
Yes
程序 2:实现 ctype_cntrl()函数,该函数接受包含整数和特殊符号的字符串数组的输入。
PHP
输出:
No
No
No
Yes
No
Yes
参考资料: 函数 : PHP 。 PHP