如何解码php中的url,其中url是用encodeURIComponent()编码的
如何解码php中的url,其中url是用encodeURIComponent()编码的?
我已经尝试过 urldecode() 但也..我不知道我编码的网址...
我必须在 php 中执行此操作..
How to decode the url in php where url is encoded with encodeURIComponent()?
I have tried the urldecode() but then also..i don't the url which i have encoded...
I have to do this in php..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用
rawurldecode()
。请参阅手册
You should use
rawurldecode()
.See the Manual
您可以使用此功能:
输出将为:
http://example.com
you can use this function:
output will be :
http://example.com