PHP | IntlChar::charMirror()函数
IntlChar::charMirror()函数是PHP中的一个内置函数,用于从给定的输入码点字符中查找“镜像”字符,该字符映射指定的字符。
句法:
mixed IntlChar::charMirror( $codepoint )
参数:此函数接受一个强制的参数$codepoint 。输入参数是一个字符或整数值,编码为UTF-8字符串。
返回值:如果没有这样的映射或代码点没有 Bidi_Mirrored 属性,则此函数返回另一个可用作镜像替代的 Unicode 代码点或代码点本身。该函数返回一个整数,除非代码点以UTF-8字符串传递,并且将返回一个字符串。
下面的程序说明了PHP中的IntlChar::charMirror()函数。
方案一:
输出:
string(1) "A"
string(1) "B"
string(1) "&"
string(1) "}"
string(1) "^"
string(1) "["
string(1) "2"
NULL
方案二:
输出:
string(1) "G"
NULL
NULL
string(1) "7"
string(1) "F"
NULL
NULL
string(1) " "
相关文章:
- IntlChar::charDigitValue()函数
- IntlChar::isblank()函数
- IntlChar::iscntrl()函数
参考: http: PHP。 PHP