当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP IntlChar::charMirror()用法及代码示例


IntlChar::charAge()函数是PHP中的内置函数,用于从给定的输入代码点字符(映射指定的字符)中找到“mirror-image”字符。

用法:

mixed IntlChar::charMirror( $codepoint )

参数:该函数接受单个参数$codepoint,该参数是必需的。输入参数是字符或整数值,将其编码为UTF-8字符串。


返回值:此函数返回可以用作mirror-image替代的另一个Unicode代码点,或者如果没有这样的映射或代码点不具有Bidi_Mirrored属性,则返回代码点本身。该函数将返回一个整数,除非在UTF-8字符串中传递了代码点,否则将返回一个字符串。

以下示例程序旨在说明PHP中的IntlChar::charMirror()函数。程序1:

<?php 
// PHP code to illustrate 
// IntlChar::charMirror ()function 
  
// Input Alphabet codepoint character 
var_dump(IntlChar::charMirror("A")); 
var_dump(IntlChar::charMirror("B")); 
  
// Input codepoint is Symbloic  
var_dump(IntlChar::charMirror("&")); 
var_dump(IntlChar::charMirror("{")); 
var_dump(IntlChar::charMirror("^")); 
var_dump(IntlChar::charMirror("]")); 
  
// Input codepoint is integer  
var_dump(IntlChar::charMirror("2")); 
var_dump(IntlChar::charMirror("10")); 
  
?>

输出:

string(1) "A" 
string(1) "B" 
string(1) "&" 
string(1) "}" 
string(1) "^" 
string(1) "[" 
string(1) "2" 
NULL

程序2:

<?php 
// PHP code to illustrate 
// IntlChar::charMirror() function 
  
// Declare an array $arr 
$arr = array("G", "Geek", "801", "7", "F", " \\", "/ ", "\t"); 
  
// Loop run for every array element 
foreach ($arr as $val){ 
      
    // Check each element as code point data 
    var_dump(IntlChar::charMirror($val)); 
} 
?>

输出:

string(1) "G" 
NULL 
NULL 
string(1) "7" 
string(1) "F" 
NULL 
NULL 
string(1) "    " 

相关文章:

参考: http://php.net/manual/en/intlchar.charmirror.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | IntlChar::charMirror() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。