IntlChar::getUnicodeVersion()函數是PHP中的內置函數,用於獲取Unicode版本。 Unicode標準版本信息填充到數組中。例如,Unicode版本2.2.1表示為具有值[2、2、1、0]的數組。
用法:
array IntlChar::getUnicodeVersion ( void )
參數:該函數不接受任何參數。
返回值:此函數返回一個包含Unicode版本號的數組。
以下示例程序旨在說明PHP中的IntlChar::getUnicodeVersion()函數:
程序:
<?php
var_dump(IntlChar::getUnicodeVersion());
?>
輸出:
array(4) { [0]=> int(7) [1]=> int(0) [2]=> int(0) [3]=> int(0) }
相關文章:
- PHP | IntlChar::iscntrl()函數
- PHP - IntlChar charType()用法及代碼示例
- PHP | IntlChar::ord()函數
- PHP - IntlChar toupper()用法及代碼示例
參考: http://php.net/manual/en/intlchar.getunicodeversion.php
相關用法
- PHP IntlChar::ord()用法及代碼示例
- PHP IntlChar::chr()用法及代碼示例
- PHP IntlChar::isUAlphabetic()用法及代碼示例
- PHP IntlChar::isUWhiteSpace()用法及代碼示例
- PHP IntlChar::charAge()用法及代碼示例
- PHP IntlChar::charMirror()用法及代碼示例
- PHP IntlChar::isWhitespace()用法及代碼示例
- PHP IntlChar::isUUppercase()用法及代碼示例
- PHP IntlChar::isspace()用法及代碼示例
- PHP IntlChar::charName()用法及代碼示例
- PHP IntlChar::isIDIgnorable()用法及代碼示例
- PHP IntlChar::charDigitValue()用法及代碼示例
- PHP IntlChar::isIDStart()用法及代碼示例
- PHP IntlChar istitle()用法及代碼示例
- PHP IntlChar::isISOControl()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | IntlChar getUnicodeVersion() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。