URL 编码 PHP

发布于 2024-11-05 19:17:07 字数 536 浏览 0 评论 0原文

我测试了 urlencode()rawurlencode() 输出,它们会产生不同的结果,就像在 Firefox 和一些在线编码器中一样......

示例;

火狐浏览器编码器

ä = %C3%A4
ß = %C3%9F

PHP rawurlencode() 和 urlencode():

ß = %DF

ä = %E4

除了硬编码和替换之外,我还能做什么?

I tested urlencode() and rawurlencode() out and they produce different result, like in Firefox and some online encoders...

Example;

Firefox & encoders

ä = %C3%A4
ß = %C3%9F

PHP rawurlencode() and urlencode():

ß = %DF

ä = %E4

What can I do, except hard coding and replacing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

清风夜微凉 2024-11-12 19:17:07

它们会产生不同的输出,因为您提供了不同的输入,即不同的字符编码: Firefox 使用 UTF-8< /a> 并且您的 PHP 脚本使用 Windows-1252。尽管在两个字符集中,字符位于相同位置(ß=0xDF、ä=0xE4),即具有相同的代码点,但它们对该代码点进行编码不同之处:

 CP   | UTF-8  | Windows-1252
------+--------+--------------
 0xDF | 0xC39F |         0xDF
 0xE4 | 0xC3A4 |         0xE4

使用相同的字符编码(最好是 UTF-8),您将得到相同的结果。

They produce different outputs because you provided different inputs, i.e., different character encodings: Firefox uses UTF-8 and your PHP script uses Windows-1252. Although in both character sets the characters are at the same position (ß=0xDF, ä=0xE4), i.e., the have the same code point, they encode that code point differently:

 CP   | UTF-8  | Windows-1252
------+--------+--------------
 0xDF | 0xC39F |         0xDF
 0xE4 | 0xC3A4 |         0xE4

Use the same character encoding (preferably UTF-8) and you’ll get the same result.

小兔几 2024-11-12 19:17:07

也许 Base64 编码并在发布中使用,以免访问者害怕这些 URL。

Maybe Base64 encode, and use in post, to not make visitors afraid of these URLs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文