将其转换为日语字符(编码)
请帮我转换一下...我不知道如何调用这种数据,是十六进制吗?
2%E6%9C%8819%E6%97%A5
我相信这应该打印为 2月19日
How can I conversion 2%E6%9C%8819%E6%97%A5
to be 2月19日
使用PHP?
谢谢
Please help me convert this... I dont know how to call this kind of data, is it hex?
2%E6%9C%8819%E6%97%A5
I believe that this should be printed as 2月19日
How can I convert 2%E6%9C%8819%E6%97%A5
to be 2月19日
using PHP?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来像是 URL 编码 http://en.wikipedia.org/wiki/Url_encoding
PHP UrlDecode可能会成功。
http://www.php.net/manual/en/function.urldecode.php
该链接中有一个示例,显示了对页面的查询字符串进行 url 解码。我不懂 PHP,但您可能需要如下内容:
That looks like it's URL encoded http://en.wikipedia.org/wiki/Url_encoding
PHP UrlDecode might do the trick.
http://www.php.net/manual/en/function.urldecode.php
There's an example at that link which shows url decoding the querystring of a page. I don't know PHP, but you might want soemthing like the following: