codecamp

PHP utf8_decode() 函数

PHP utf8_decode() 函数


PHP XML 参考手册 完整的 PHP XML 参考手册

定义和用法

utf8_decode() 函数把 UTF-8 字符串解码为 ISO-8859-1。

该函数把通过 utf8_encode() 函数编码的 ISO-8859-1 字符串进行解码,转换成单字节的 ISO-8859-1 字符串。

如果成功,该函数则返回解码字符串。如果失败,则返回 FALSE。

语法

utf8_decode(string)

参数 描述
string 必需。规定要解码的字符串。


PHP XML 参考手册 完整的 PHP XML 参考手册
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PHP 相关教程

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }