PHP 中的 ctype_cntrl() 函数

phpprogrammingserver side programming

ctype_cntrl() 函数检查控制字符。如果文本中的每个字符都是当前语言环境的控制字符,则返回 TRUE,否则返回 FALSE。

语法

ctype_cntrl(str)

参数

  • str − 测试的字符串

返回

如果文本中的每个字符都是当前语言环境的控制字符,则 ctype_cntrl() 函数返回 TRUE,否则返回 FALSE。

示例

下面是一个例子 −

<?php
$arr = array('str1' =>"
\r\t", 'str2' =>"demo76876test"); foreach ($arr as $a => $demo) {    if (ctype_cntrl($demo)) {       echo "$a has all control characters.
";    }else {       echo "$a does not have all control characters.
";    } } ?>

输出

str1 has all control characters.
str2 does not have all control characters.

相关文章