PHP 解码带双引号的 GET 参数时出现问题

发布于 2024-10-06 21:08:34 字数 428 浏览 2 评论 0原文

我正在使用 AJAX 将“数据”参数传递到 php 页面。参数是一个 JSON 字符串,例如:

{"type":"value"}

我用encodeURIComponent JS 函数进行编码获取:

%7B%22type%22%3A%22value%22%7D

如果我用手写:

http://some_url/index.php?data=%7B%22type%22%3A%22value%22%7D

我的“index.php”只需获取参数并“在屏幕上打印”。问题是我得到的不是一个有效的 JSON 来解码:

{\"type\":\"value\"}

任何帮助, 提前致谢

I'm passing a 'data' parameter to a php page using AJAX. The parameter is a JSON string like:

{"type":"value"}

I encode with encodeURIComponent JS function getting:

%7B%22type%22%3A%22value%22%7D

If I write by hand:

http://some_url/index.php?data=%7B%22type%22%3A%22value%22%7D

my "index.php" simply gets the parameters and "prints in the screen". The problem is I'm getting this which isn't a valid JSON to decode:

{\"type\":\"value\"}

Any help,
thanks in advance

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

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

发布评论

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

评论(2

余生再见 2024-10-13 21:08:34

检查您是否未启用 magic_quotes。使用 json_decode() 来解码 JSON 数据。

Check that you don't have magic_quotes on. The use json_decode() to decode your JSON data.

想你的星星会说话 2024-10-13 21:08:34

这样做。替换参数中的“\”。

$jsonString = $_GET['data'];

$jsonStringReplaced = str_replace("\\","",$jsonString);

$arr = json_decode($jsonStringReplaced);

var_dump($arr);

这对我有用。

Do like this. Replace de "\" from the parameter.

$jsonString = $_GET['data'];

$jsonStringReplaced = str_replace("\\","",$jsonString);

$arr = json_decode($jsonStringReplaced);

var_dump($arr);

It worked for me.

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