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()函数的实现。
程序1:
<?php
// PHP program to check given string
// produce visible output or not
$string = "Geeksforgeeks";
// Check strings by using ctype_graph()
// function.
if ( ctype_graph ($string) )
echo "$string: Visible";
else
echo "$string: Not Visible";
?>
输出:
Geeksforgeeks: Visible
程序2:
<?php
// PHP program to check given string
// produce visible output or not
$string = array(
"@!#$%^&*()_+",
"peacefull mind",
'45600'
);
// Check strings by using ctype_graph()
// function.
foreach ($string as $test) {
if (ctype_graph($test))
echo "$test: Visible\n";
else
echo "$test: Not Visible\n";
}
?>
输出:
@!#$%^&*()_+: Visible peacefull mind: Not Visible 45600: Visible
相关文章:PHP - ctype_print()用法及代码示例
参考:http://php.net/manual/zh/function.ctype-graph.php
相关用法
- p5.js sq()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP next()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ctype_graph() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。