IntlChar::getBidiPairedBracket()函數是PHP中的內置函數,用於獲取代碼點的成對括號字符。此函數映射到成對的括號。如果角色沒有對括號,則它將返回角色本身。
用法:
IntlChar::getBidiPairedBracket ( $codepoint )
參數:該函數接受強製的單個參數$codepoint。 $codepoint值是整數值或字符,被編碼為UTF-8字符串。
返回值:此函數返回映射的配對括號。如果角色沒有對括號,則它將返回角色本身。
以下示例程序旨在說明PHP中的IntlChar::getBidiPairedBracket()函數:
程序1:
<?php
// PHP function to illustrate
// the use of IntlChar::getBidiPairedBracket()
// Input data is number type
var_dump(IntlChar::getBidiPairedBracket(91));
// Input data is bracket character type
var_dump(IntlChar::getBidiPairedBracket('['));
// Input data is bracket character type
var_dump(IntlChar::getBidiPairedBracket('}'));
// Input data is bracket character type
var_dump(IntlChar::getBidiPairedBracket('"'));
// Input data is string type
var_dump(IntlChar::getBidiPairedBracket('ABC'));
// Input data is character type
var_dump(IntlChar::getBidiPairedBracket('A'));
?>
輸出:
int(93) string(1) "]" string(1) "{" string(1) """ NULL string(1) "A"
程序2:
<?php
// PHP code to illustrate the
// IntlChar::getBidiPairedBracket() function
// Declare an array $arr
$arr = array("G", "{", "^", ")", "6", "{}", "))", "\t");
// Loop run for every array element
foreach ($arr as $val){
// Check each element as code point data
var_dump(IntlChar::getBidiPairedBracket($val));
}
?>
輸出:
string(1) "G" string(1) "}" string(1) "^" string(1) "(" string(1) "6" NULL NULL string(1) " "
相關文章:
參考: http://php.net/manual/en/intlchar.getbidipairedbracket.php
相關用法
- PHP IntlChar::chr()用法及代碼示例
- PHP IntlChar::ord()用法及代碼示例
- PHP IntlChar::ispunct()用法及代碼示例
- PHP IntlChar::isspace()用法及代碼示例
- PHP IntlChar::isWhitespace()用法及代碼示例
- PHP IntlChar::isUUppercase()用法及代碼示例
- PHP IntlChar hasBinaryProperty()用法及代碼示例
- PHP IntlChar::isalnum()用法及代碼示例
- PHP IntlChar getPropertyName()用法及代碼示例
- PHP IntlChar::isbase()用法及代碼示例
- PHP IntlChar::islower()用法及代碼示例
- PHP IntlChar::isxdigit()用法及代碼示例
- PHP IntlChar::isprint()用法及代碼示例
- PHP IntlChar::isUAlphabetic()用法及代碼示例
- PHP IntlChar::isUWhiteSpace()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | IntlChar getBidiPairedBracket() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。