在 PHP 中使用 ISO-8859-1 编码拉丁字符

发布于 2024-11-01 20:20:43 字数 541 浏览 1 评论 0原文

我想使用 PHP 将包含 à 等拉丁字符的 URL 编码为 ISO-8859-1。

编码后的字符串将用于执行对 Web 服务的请求。因此,如果请求是:

http://www.mywebservice.com?param

编码的字符串应该是:

http://www.mywebservice.com?param=%E0

我已经尝试过使用 PHP 函数 urlencode() 但它返回以 UTF-8 编码的输入:

http://www.mywebservice.com?param=%C3%A0

I want to encode to ISO-8859-1 a url that contains latin characters like à, using PHP.

The encoded string will be used to perform a request to a webservice. So if the request is:

http://www.mywebservice.com?param

the encoded string should be:

http://www.mywebservice.com?param=%E0

I've tried using PHP's function urlencode() but it returns the input encoded in UTF-8:

http://www.mywebservice.com?param=%C3%A0

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

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

发布评论

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

评论(1

不美如何 2024-11-08 20:20:43

urlencode 之前使用 utf8_decode

urlencode(utf8_decode("à"))

Use utf8_decode before urlencode:

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