當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP IntlChar::isdigit()用法及代碼示例


IntlChar::isdigit()函數是PHP中的內置函數,用於確定給定的輸入代碼數據是否為數字字符。當字符在常規類別的十進製數字數字下時,它將返回true。從Unicode 4開始,這與測試十進製的Numeric_Type相同。

用法:

bool IntlChar::isdigit ( $codepoint )

參數:此函數接受如上所述和以下描述的單個參數:


  • $codepoint:輸入參數$input_codepoint是整數或字符,被編碼為UTF-8字符串。

返回值:如果$codepoint數據是數字字符,則返回True,否則返回False。

例子:

Input:$codepoint = "X"
Output:bool(false)

Input:$codepoint = "7"
Output:bool(true)

以下示例程序旨在說明PHP中的IntlChar::isdigit()函數:

程序1:

<?php 
// PHP code to illustrate the  
// IntlChar::isdigit() function. 
  
// single digit 
var_dump(IntlChar::isdigit("5")); 
  
// number cases 
var_dump(IntlChar::isdigit("5555")); 
  
// float number 
var_dump(IntlChar::isdigit("15.08")); 
  
// big number 
var_dump(IntlChar::isdigit("12e")); 
?>

輸出:

bool(true)
NULL 
NULL 
NULL

程序2:

<?php 
// PHP code to illustrate the  
// IntlChar::isdigit() function. 
  
// alphabet cases  
var_dump(IntlChar::isdigit("G")); 
  
// in space cases 
var_dump(IntlChar::isdigit(" ")); 
  
// new line cases 
var_dump(IntlChar::isdigit("\n")); 
  
// string cases 
var_dump(IntlChar::isdigit("Geeks ")); 
  
// symbol cases 
var_dump(IntlChar::isdigit("@")); 
  
?>

輸出:

bool(false) 
bool(false) 
bool(false) 
NULL 
bool(false)

程序3:

<?php 
// PHP code to illustrate the 
// IntlChar::isdigit() function. 
  
var_dump(IntlChar::isdigit("0")); 
  
var_dump(IntlChar::isdigit(' ')); 
?>

輸出:

bool(true) 
bool(false)

參考文獻: http://php.net/manual/en/intlchar.isdigit.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlChar::isdigit() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。