如何解码php中的url,其中url是用encodeURIComponent()编码的

发布于 2024-08-31 19:32:19 字数 122 浏览 1 评论 0原文

如何解码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 技术交流群。

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

发布评论

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

评论(2

旧瑾黎汐 2024-09-07 19:32:19

您应该使用rawurldecode()
请参阅手册

You should use rawurldecode().
See the Manual

我为君王 2024-09-07 19:32:19

您可以使用此功能:

<?php
$string = 'http%3A%2F%2Fexample.com';
$output = preg_replace("/%u([0-9a-f]{3,4})/i","&#x\\1;",urldecode($string)); 
echo html_entity_decode($output,null,'UTF-8');
?>

输出将为:http://example.com

you can use this function:

<?php
$string = 'http%3A%2F%2Fexample.com';
$output = preg_replace("/%u([0-9a-f]{3,4})/i","&#x\\1;",urldecode($string)); 
echo html_entity_decode($output,null,'UTF-8');
?>

output will be : http://example.com

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