當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。