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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。