php json中文字符转义
Posted 行走江湖的码农
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php json中文字符转义相关的知识,希望对你有一定的参考价值。
$test0=array(
'id'=>100,
'name'=>"demo数据",
);
//将数组遍历,每个变量进行编码
foreach($test0 as $key=>$val)
$test[$key]=urlencode($val);
$test2=json_encode($test);
$test3=urldecode($test2);
echo $test3;
以上是关于php json中文字符转义的主要内容,如果未能解决你的问题,请参考以下文章