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
相關用法
- d3.js d3.lab()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlChar::isdigit() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。