📜  PHP | ctype_graph()函数(1)

📅  最后修改于: 2023-12-03 15:18:21.947000             🧑  作者: Mango

PHP | ctype_graph()函数

什么是ctype_graph()函数?

ctype_graph()函数用于检查字符串中是否所有字符都是可打印的字符(不包括空格)。如果字符串中所有字符都是可打印字符,则返回True,否则返回False。

语法
bool ctype_graph ( string $text )
参数
  • text: 必需,需要检查的字符串。
返回值

如果字符串中所有字符都是可打印的字符,则返回True,否则返回False。

代码示例
<?php
$string = "Hello World!";
if (ctype_graph($string)) {
    echo "All characters in the string are printable!\n";
} else {
    echo "The string contains non-printable characters!\n";
}
?>
返回结果
All characters in the string are printable!
其他

ctype_graph()函数只检测ASCII字符。对于Unicode字符可能会有不正确的行为。