📜  PHP | IntlChar getBidiPairdBracket()函数

📅  最后修改于: 2022-05-13 01:56:43.426000             🧑  作者: Mango

PHP | IntlChar getBidiPairdBracket()函数

IntlChar::getBidiPairedBracket()函数是PHP中的一个内置函数,用于获取代码点的配对括号字符。此函数与成对括号映射。如果字符没有双括号,则返回字符本身。

句法:

IntlChar::getBidiPairedBracket ( $codepoint )

参数:此函数接受单个参数$codepoint ,这是强制性的。 $codepoint值是一个整数值或字符,它被编码为UTF-8字符串。

返回值:此函数返回映射的成对括号。如果字符没有双括号,则返回字符本身。

下面的程序说明了PHP中的IntlChar::getBidiPairedBrcket()函数:

方案一:


输出:
int(93)
string(1) "]"
string(1) "{"
string(1) """
NULL
string(1) "A"

方案二:


输出:
string(1) "G"
string(1) "}"
string(1) "^"
string(1) "("
string(1) "6"
NULL
NULL
string(1) "    "

相关文章:

  • PHP | IntlChar::totitle()函数
  • PHP | IntlChar::iscntrl()函数
  • PHP | IntlChar charType()函数

参考: http: PHP。 PHP