Heim >Backend-Entwicklung >PHP-Tutorial >有关乱码的处理

有关乱码的处理

WBOY
WBOYOriginal
2016-07-06 13:52:151205Durchsuche

www.smsbao.com(短信宝)有一个短信上行接收API。

API说明为:

http://xxx.xxx.xxx/ xxx?m=PHONE&c=CONTENT
http://xxx.xxx.xxx/xxx:接收短信 的URL地址
PHONE:发送方手机号码
CONTENT:短信内容,采用UTF-8 URL ENCODE
返回 '0' 视为接收成功,其他内容为错误提示内容

我用urldecode()函数解码短信内容,但是还是乱码。请问该如何解决?谢谢!

附:

手机发送测试内容:

66666successful成功!@#

解码后内容:

66666successful成功!@#

回复内容:

www.smsbao.com(短信宝)有一个短信上行接收API。

API说明为:

http://xxx.xxx.xxx/ xxx?m=PHONE&c=CONTENT
http://xxx.xxx.xxx/xxx:接收短信 的URL地址
PHONE:发送方手机号码
CONTENT:短信内容,采用UTF-8 URL ENCODE
返回 '0' 视为接收成功,其他内容为错误提示内容

我用urldecode()函数解码短信内容,但是还是乱码。请问该如何解决?谢谢!

附:

手机发送测试内容:

66666successful成功!@#

解码后内容:

66666successful成功!@#

<code>iconv('gbk','utf-8//IGNORE',$content);</code>

使用urldecode了之后再转下码.

你是提交到他们API?

urldecode解码?

不应该是urlencode编码吗?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn