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


PHP utf8_decode()用法及代碼示例


utf8_decode()函數是PHP中的內置函數,用於將UTF-8字符串解碼為ISO-8859-1。此函數解碼回編碼的字符串,該字符串使用utf8_encode()函數進行編碼。

用法:

string utf8_decode( string $string )

參數:此函數接受單個參數$string。它指定要解碼的UTF-8編碼字符串。


返回值:該函數返回一個字符串,該字符串表示成功時的解碼字符串,失敗則返回false。

注意:此函數可用於PHP 4.0.0和更高版本。

程序1:

<?php 
  
// String to decode 
$string_to_decode = "\x63"; 
  
// Encoding string 
echo utf8_encode($string_to_decode) ."<br>"; 
  
// Eecoding string 
echo utf8_decode($string_to_decode); 
  
?>

輸出:

c
c

程序2:

<?php 
  
// Creating an array of 256 elements 
$text = array( 
    "\x20", "\x21", "\x22", "\x23", "\x24", "\x25", 
    "\x26", "\x27", "\x28", "\x29", "\x2a", "\x2b", 
    "\x2c", "\x2d", "\x2e", "\x2f", "\x30", "\x31"
); 
  
echo "Encoded elements:\n"; 
  
// Encoding and decoding all elements 
foreach( $text as $index ) { 
    echo utf8_encode($index) . " "; 
} 
  
echo "\nDecoded elements:\n"; 
  
foreach( $text as $index ) { 
    echo utf8_decode($index) . " ";  
} 
  
?>

輸出:

Encoded elements:
  ! " # $ % & ' ( ) * + , - . / 0 1 
Decoded elements:
  ! " # $ % & ' ( ) * + , - . / 0 1 

參考: https://www.php.net/manual/en/function.utf8-decode.php



相關用法


注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 PHP | utf8_decode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。