📜  PHP | ctype_graph()函数

📅  最后修改于: 2022-05-13 01:56:21.867000             🧑  作者: Mango

PHP | ctype_graph()函数

ctype_graph()函数是PHP中的内置函数。给定的字符串用于检查每个字符并显示所有不带空格字符。如果它是可见的,则返回 True,否则返回 False。

句法:

bool ctype_graph ( $text )

参数: ctype_graph()函数接受包含测试字符串的单个参数$text文件。

返回值:如果$text中的每个字符都是可打印的,则返回 true,否则返回 false。

例子:

Input  : Geeks
Output : Yes

Input  : http//geeks.com\n
Output : No
Explanation : "\n" is not visible in string "http//geeks.com\n".                   

下面是 ctype_graph()函数的实现。
方案一:


输出:
Geeksforgeeks: Visible

方案二:


输出:
@!#$%^&*()_+: Visible
peaceful mind: Not Visible
45600: Visible

相关文章: PHP | ctype_print()函数
参考: 函数 : PHP 。 PHP