ctype_cntrl
ctype_cntrl
(PHP 4 >= 4.0.4, PHP 5, PHP 7)
ctype_cntrl - 检查控制字符(s)
描述
bool ctype_cntrl ( string $text )
检查提供的字符串中的所有字符text
是否都是控制字符。控制字符是例如换行符,制表符,转义符。
参数
text
被测试的字符串。
返回值
如果文本中的每个字符都是来自当前语言环境的控制字符,则返回TRUE,否则返回FALSE。
例子
示例#1 一个ctype_cntrl()示例
<?php
$strings = array('string1' => "\n\r\t", 'string2' => 'arf12'
foreach ($strings as $name => $testcase) {
if (ctype_cntrl($testcase)) {
echo "The string '$name' consists of all control characters.\n";
} else {
echo "The string '$name' does not consist of all control characters.\n";
}
}
?>
上面的例子将输出:
The string 'string1' consists of all control characters.
The string 'string2' does not consist of all control characters.
注意
注意
:如果提供了-128到255之间的整数,则它将被解释为单个字符的ASCII值(为了允许扩展ASCII范围中的字符,负值将被添加256)。任何其他整数都被解释为包含整数的十进制数字的字符串。
扩展内容
- ctype_print() - 检查可打印字符(s)
← ctype_alpha
ctype_digit →