PHP 中的 ctype_digit() 函数

phpprogrammingserver side programming

ctype_digit() 函数检查数字字符。它检查提供的字符串文本中的所有字符是否都是数字。

语法

ctype_digit(str)

参数

  • str − 测试的字符串

返回

如果文本中的每个字符都是十进制数字,则 ctype_digit() 函数返回 TRUE,否则返回 FALSE。

示例

下面是一个例子 −

<?php
   $arr = array('mac7687', '8798');

   foreach ($arr as $a) {
      if (ctype_digit($a)) {
         echo "$a has all digits. 
";       } else {          echo "$a does not have all digits.
";       }    } ?>

输出

以下是输出 −

mac7687 does not have all digits.
8798 has all digits.

相关文章