在 PHP 中使用 ISO-8859-1 编码拉丁字符
我想使用 PHP 将包含 à 等拉丁字符的 URL 编码为 ISO-8859-1。
编码后的字符串将用于执行对 Web 服务的请求。因此,如果请求是:
http://www.mywebservice.com?param=à
编码的字符串应该是:
http://www.mywebservice.com?param=%E0
我已经尝试过使用 PHP 函数 urlencode() 但它返回以 UTF-8 编码的输入:
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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
urlencode
之前使用utf8_decode
:Use
utf8_decode
beforeurlencode
: