如果字节在 \x00-\x1f 或 \x7f(del)范围内,则返回 true。如果字节在 \x20-\x7e 或 \x80-\xff 范围内,则返回 false。
(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
ctype_cntrl — 检查控制字符
text
要测试的字符串。
注意:
如果提供了 -128 到 255(含)之间的 整数,它将被解释为单个字符的 ASCII 值(负值将添加 256 以允许扩展 ASCII 范围内的字符)。任何其他整数都被解释为包含整数十进制数字的字符串。
示例 #1 ctype_cntrl() 示例
<?php
$strings = array('string1' => "\n\r\t", 'string2' => 'arf12');
foreach ($strings as $name => $testcase) {
if (ctype_cntrl($testcase)) {
echo "字符串 '$name' 由所有控制字符组成。\n";
} else {
echo "字符串 '$name' 不由所有控制字符组成。\n";
}
}
?>
以上示例将输出
The string 'string1' consists of all control characters. The string 'string2' does not consist of all control characters.