中文的话用'content'=>urlencode('这是一个文本'),
然后在json加密时加上$postJson = urldecode(json_encode($array));
然后在json加密时加上$postJson = urldecode(json_encode($array));
2016-11-15
单文本推送的时候,手机端接收的是utf-8的编码怎么解决
代码:$array = array(
"touser"=>"oVytdwRJzbnsAh_JT072cw736o3c",
"text"=>array("content"=>"大家好"),
"msgtype"=>"text"
);
手机端显示的utf-8编码
代码:$array = array(
"touser"=>"oVytdwRJzbnsAh_JT072cw736o3c",
"text"=>array("content"=>"大家好"),
"msgtype"=>"text"
);
手机端显示的utf-8编码
2016-08-11