Home > Backend Development > PHP Tutorial > swift - 有关php 写 ios 推播中文 乱码的问题

swift - 有关php 写 ios 推播中文 乱码的问题

WBOY
Release: 2016-06-06 20:16:47
Original
1628 people have browsed it

swift - 有关php 写 ios 推播中文 乱码的问题

如图
首先我的编码已是utf8 ,我试过各种转码的函数 iconv_get_encoding iconv mb_convert_encoding
还一样是 乱码 ...请教各位大大,这个对各位神人来说很容易的,要怎么处理???(垂头)

顺带一问,如果各位大大不想回答也没关系,我会自己寻找 但发问快一点 ^_^

在ios app一开始会执行
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject])

那如果我退出 (app在背景执行),后再打开app,会执行那一个呢?我记得我上次有写过,但一时忘了,请指教...感谢....

回复内容:

swift - 有关php 写 ios 推播中文 乱码的问题

如图
首先我的编码已是utf8 ,我试过各种转码的函数 iconv_get_encoding iconv mb_convert_encoding
还一样是 乱码 ...请教各位大大,这个对各位神人来说很容易的,要怎么处理???(垂头)

顺带一问,如果各位大大不想回答也没关系,我会自己寻找 但发问快一点 ^_^

在ios app一开始会执行
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject])

那如果我退出 (app在背景执行),后再打开app,会执行那一个呢?我记得我上次有写过,但一时忘了,请指教...感谢....

只要在中文字串前加个 urlencode 后,在json后再加 urldecode即可

$arr = urlencode(array('a'=>'小灰狼'));
echo urldecode(json_encode($arr));

phpjson_encode 第二个参数中加入 JSON_UNESCAPED_UNICODE 就能避免 unicode 字符被转意。

首先这不是乱码,是unicode编码。
php的json_encode会默认把中文转换为Unicode编码。如果不需要,加上第二个参数JSON_UNESCAPED_UNICODE

<code><?php json_encode(array("name"=>"张飞"),JSON_UNESCAPED_UNICODE);</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template