GBK的页面输出JSON格式的php函数_php技巧
程序员文章站
2022-04-03 14:35:11
...
复制代码 代码如下:
function tb_json_encode($value, $options = 0)
{
return json_encode(tb_json_convert_encoding($value, “GBK”, “UTF-8″));
}
function tb_json_decode($str, $assoc = false, $depth = 512)
{
return tb_json_convert_encoding(json_decode($str, $assoc), “UTF-8″, “GBK”);
}
function tb_json_convert_encoding($m, $from, $to)
{
switch(gettype($m)) {
case ‘integer':
case ‘boolean':
case ‘float':
case ‘double':
case ‘NULL':
return $m;
case 'string':
return mb_convert_encoding($m, $to, $from);
case ‘object':
$vars = array_keys(get_object_vars($m));
foreach($vars as $key) {
$m->$key = tb_json_convert_encoding($m->$key, $from ,$to);
}
return $m;
case ‘array':
foreach($m as $k => $v) {
$m[tb_json_convert_encoding($k, $from, $to)] = tb_json_convert_encoding($v, $from, $to);
}
return $m;
default:
}
return $m;
}
上一篇: 企业开发中使用H5有哪些注意事项
推荐阅读
-
GBK的页面输出JSON格式的php函数
-
WordPres对前端页面调试时的两个PHP函数使用小技巧
-
WordPres对前端页面调试时的两个PHP函数使用小技巧_PHP
-
解析php获取字符串的编码格式的方法(函数)_php技巧
-
PHP ajax请求到的数据获取到的结果为Html格式,是当前页面的html,转换不成json,求破解
-
解析php获取字符串的编码格式的方法(函数)_php技巧
-
php将从数据库中获得的数据转换成json格式并输出的方法
-
GBK的页面输出JSON格式的php函数_PHP教程
-
js格式化 GBK的页面输出JSON格式的php函数
-
php date函数格式化输出指定范围的时间