PHP 中的 ctype_punct() 函数

phpprogrammingserver side programming

ctype_punct() 函数检查任何非空格或字母数字字符的可打印字符。

语法

ctype_punct(str)

参数

  • str − 测试的字符串

返回

如果文本中的每个字符都可打印,但字母、数字或空白都不可打印,则 ctype_punct() 函数返回 TRUE,否则返回 FALSE。

示例

下面是一个例子 −

<?php
   $srr = array('k211!@!$#', 'foo!#$bar', '*$()');

   foreach ($srr as $d) {
      if (ctype_punct($d)) {
         echo "$d consists of all punctuation. 
";       } else {          echo "$d does not have all punctuation.
";       }    } ?>

输出

以下是输出 −

k211!@!$# does not have all punctuation.
foo!#$bar does not have all punctuation.
*$() consists of all punctuation.

相关文章