URL 编码 PHP
我测试了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它们会产生不同的输出,因为您提供了不同的输入,即不同的字符编码: Firefox 使用 UTF-8< /a> 并且您的 PHP 脚本使用 Windows-1252。尽管在两个字符集中,字符位于相同位置(
ß
=0xDF、ä
=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:Use the same character encoding (preferably UTF-8) and you’ll get the same result.
也许 Base64 编码并在发布中使用,以免访问者害怕这些 URL。
Maybe Base64 encode, and use in post, to not make visitors afraid of these URLs.