PHP | utf8_decode()函数
utf8_decode()函数是PHP中的一个内置函数,用于将 UTF-8字符串解码为 ISO-8859-1。此函数解码回使用 utf8_encode()函数编码的编码字符串。
句法:
string utf8_decode( string $string )
参数:此函数接受所需的单个参数$字符串。它指定要解码的 UTF-8 编码字符串。
返回值:此函数返回一个字符串,表示成功时解码的字符串,失败时返回 false。
注意:此函数适用于PHP 4.0.0 及更新版本。
方案一:
PHP
";
// Encoding string
echo utf8_decode($string_to_decode);
?>
PHP
输出:
c
c
方案二:
PHP
输出:
Encoded elements:
! " # $ % & ' ( ) * + , - . / 0 1
Decoded elements:
! " # $ % & ' ( ) * + , - . / 0 1
参考: https://www. PHP.net/manual/en/函数.utf8-decode。 PHP