将其转换为日语字符(编码)

发布于 2024-10-02 10:16:51 字数 217 浏览 3 评论 0原文

请帮我转换一下...我不知道如何调用这种数据,是十六进制吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回首观望 2024-10-09 10:16:51

看起来像是 URL 编码 http://en.wikipedia.org/wiki/Url_encoding

PHP UrlDecode可能会成功。
http://www.php.net/manual/en/function.urldecode.php

该链接中有一个示例,显示了对页面的查询字符串进行 url 解码。我不懂 PHP,但您可能需要如下内容:

<?php
    $original = "2%E6%9C%8819%E6%97%A5";
    $decoded = urldecode($original);
    echo $decoded;
?>

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:

<?php
    $original = "2%E6%9C%8819%E6%97%A5";
    $decoded = urldecode($original);
    echo $decoded;
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文