IntlChar::isbase()函數是PHP中的內置函數,用於檢查給定的輸入數據是否為基本字符。如果指定的代碼點是基本字符,則對於常規類別“L”(字母),“N”(數字),“Mc”(空格組合標記)和“Me”(括起來的標記),它返回TRUE。
用法:
bool IntlChar::isbase( $codepoint )
參數:此函數接受單個參數$codepoint,這是必需的。輸入參數是整數或字符,被編碼為UTF-8字符串。
返回值:如果$codepoint是基本字符,則返回TRUE,否則返回FALSE。
例子:
Input:(IntlChar::isbase("D")) Output:bool(true) Input:(IntlChar::isbase("*")) Output:bool(false) Input:(IntlChar::isbase("9")); Output:bool(true)
以下示例程序旨在說明PHP中的IntlChar::isbase()函數:程序1:
<?php
// PHP code to illustrate IntlChar::isbase()
// Function
// Input data is character type
var_dump(IntlChar::isbase("D"));
// Input data is string type
var_dump(IntlChar::isbase("Geeksforgeeks"));
// Input data is integer type
var_dump(IntlChar::isbase("234"));
// Input data is special character type
var_dump(IntlChar::isbase("*"));
?>
輸出:
bool(true) NULL NULL bool(false)
程序2:
<?php
//PHP code to illustrate isbase()
// Declare an array $arr
$arr = array("4", "20001111", "^", " ", "*", "GeeksforGeeks");
// Loop run for every array element
foreach ($arr as $val){
// Check each element as code point data
var_dump(IntlChar::isbase($val));
}
?>
輸出:
bool(true) NULL bool(false) NULL bool(false) NULL
相關文章:
參考: http://php.net/manual/en/intlchar.isbase.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::isbase() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。