📅  最后修改于: 2023-12-03 15:18:21.947000             🧑  作者: Mango
ctype_graph()函数用于检查字符串中是否所有字符都是可打印的字符(不包括空格)。如果字符串中所有字符都是可打印字符,则返回True,否则返回False。
bool ctype_graph ( string $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字符可能会有不正确的行为。