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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。