Php/func xml utf8 decode
来自菜鸟教程
PHP utf8_decode()函数
例
将UTF-8字符串解码为ISO-8859-1:
<?php $text = "\xE0"; echo utf8_encode($text) ."<br>"; echo utf8_decode($text); ?>
定义和用法
utf8_decode()函数将UTF-8字符串解码为ISO-8859-1。
此函数解码以前用 utf8_encode()
功能,回到ISO-8859-1。
句法
utf8_decode(string)
参数值
参数 | 描述 |
---|---|
串 | 需要。指定要解码的UTF-8编码字符串 |
技术细节
返回值: | 成功解码后的字符串。失败时为假 |
PHP版本: | 4.0+ |