从 PHP urldecoded 字符串中删除所有反斜杠

发布于 2024-11-05 11:51:19 字数 198 浏览 1 评论 0原文

我试图从 url 解码字符串中删除所有反斜杠,但它输出 \ 而不是输出删除了 \ 的 url 解码字符串。

请你告诉我我的问题。

<?php
$json = $_GET['ingredients'];
echo urldecode(str_replace($json,$json, "\\"));
?>

I am trying to remove all backslashes from a url-decoded string, but it is outputting \ rather than outputting the url-decoded string with \ removed.

Please can you tell me my problem.

<?php
$json = $_GET['ingredients'];
echo urldecode(str_replace($json,$json, "\\"));
?>

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

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

发布评论

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

评论(5

千と千尋 2024-11-12 11:51:19

您想使用 stripslashes(),因为这正是它的用途。看起来也更短:

echo urldecode(stripslashes($json));

但是,您应该考虑禁用 magic_quotes

You want to use stripslashes(), because that's exactly what it is for. Also looks shorter:

echo urldecode(stripslashes($json));

You should however consider disabling magic_quotes rather.

雨巷深深 2024-11-12 11:51:19

试试这个,你的 str_replace 参数不正确。

<?php
$json = $_GET['ingredients'];
echo urldecode(str_replace("\\","",$json));
?>

Try this instead, your arguments for str_replace are incorrect.

<?php
$json = $_GET['ingredients'];
echo urldecode(str_replace("\\","",$json));
?>
铁憨憨 2024-11-12 11:51:19

根据 php.net 的 str_replace 文档,第一个参数是你的内容搜索,第二个是您要替换的内容,第三个是您要搜索的字符串。因此,您正在寻找以下内容:

str_replace("\\","", $json)

Accoring to php.net's str_replace docs, the first argument is what you are searching for, the second is what you are replacing with, and the third is the string you are searching in. So, you are looking for this:

str_replace("\\","", $json)
乱世争霸 2024-11-12 11:51:19

您错误地使用了 str_replace

str_replace("\\","", $json)

You're wrongly using str_replace

str_replace("\\","", $json)
拒绝两难 2024-11-12 11:51:19

这是 100% 正确的。

$attribution = str_ireplace('\r\n', '', urldecode($attribution));

This is working for 100% correctly.

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