📜  PHP | ctype_print()函数

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

PHP | ctype_print()函数

PHP中的 ctype_print()函数用于检查字符串的每个字符是否可见。如果字符串的所有字符都可见则返回TRUE ,否则如果有任何控制字符则返回FALSE

控制字符:字符可打印字符但用于启动特定操作的字符。例如'\n'是一个不可打印的控制字符,但执行“下一行”操作

句法:

ctype_print(string text)

使用的参数:

  • $text :被测试的字符串。它是一个强制参数。

返回值:
如果字符串的所有字符都是可打印的(不包含任何控制字符),此函数返回 TRUE。如果字符串包含任何控制字符,则返回 FALSE。

例子:

Input  : Geeks for geeks article
Output : Geeks for geeks article -->Yes visible

Explanation : The string contains three blank space 
             and the function returns TRUE. 

Input  : \tgfg\n
Output :     gfg
--> No visible

Explanation : '\t' and '\n' are control character .
            Then the function returns False.
                   

程序:1


输出:
GFG A Computer Science Portal: Yes visible

程序: 2驱动 ctype_print()函数的代码,其中输入将是整数,字符串数组中的符号。


输出:
GeeksforGeeks:   (Yes visible)
GFG2018:   (Yes visible)

ComputerScience:   (No visible)
G 4 G:   (Yes visible)
@#$$.&*()_+;?~:   (Yes visible)
78 96 . 90:   (Yes visible)

参考: 函数 : PHP 。 PHP