IntlChar::getCombiningClass()函數是PHP中的一個內置函數,用於獲取代碼點的組合類。
用法:
int IntlChar::getCombiningClass ( $codepoint )
參數:該函數接受單個參數$codepoint,該參數是必需的。 $codepoint值是整數值或字符,被編碼為UTF-8字符串。
返回值:該函數返回代碼點的組合類。
以下示例程序旨在說明PHP中的IntlChar::getCombiningClass()函數:
程序1:
<?php
// PHP function to illustrate
// the use of IntlChar::getCombiningClass()
// Input data is string type
var_dump(IntlChar::getCombiningClass("\p{143}"));
// Input data is character type
var_dump(IntlChar::getCombiningClass(" "));
// Input data is unicode character type
var_dump(IntlChar::getCombiningClass("\u{350}"));
// Input data is string type
var_dump(IntlChar::getCombiningClass("XYZ"));
// Input data is unicode character type
var_dump(IntlChar::getCombiningClass("\u{0358}"));
?>
輸出:
NULL int(0) int(230) NULL int(232)
程序2:
<?php
// PHP code to illustrate getCombiningClass()
// Declare an array $arr
$arr = array("\u{314}", "GeeksforGeeks", "^", "\u{0324}", "6", "\n");
// Loop run for every array element
foreach ($arr as $val){
// Check each element as code point data
var_dump(IntlChar::getCombiningClass($val));
}
?>
輸出:
int(230) NULL int(0) int(220) int(0) int(0)
相關文章:
參考: http://php.net/manual/en/intlchar.getcombiningclass.php
相關用法
- PHP IntlChar::ord()用法及代碼示例
- PHP IntlChar::chr()用法及代碼示例
- PHP IntlChar::isUWhiteSpace()用法及代碼示例
- PHP IntlChar::charAge()用法及代碼示例
- PHP IntlChar::isUAlphabetic()用法及代碼示例
- PHP IntlChar::charMirror()用法及代碼示例
- PHP IntlChar::isWhitespace()用法及代碼示例
- PHP IntlChar::isUUppercase()用法及代碼示例
- PHP IntlChar::isspace()用法及代碼示例
- PHP IntlChar::charName()用法及代碼示例
- PHP IntlChar::isIDIgnorable()用法及代碼示例
- PHP IntlChar::charDigitValue()用法及代碼示例
- PHP IntlChar::isISOControl()用法及代碼示例
- PHP IntlChar istitle()用法及代碼示例
- PHP IntlChar::isIDStart()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | IntlChar getCombiningClass() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。