如何将带有反斜杠的字符串传递给JSON?

时间:2019-04-10 01:52:57

标签: php json

我正在尝试将字符串传递到JSON中的php,并且在字符串的开头和结尾都带有反斜杠,但作为响应,我得到了使用双反斜杠的php字符串,如下:

 $n = "\\3\\";

这是我收到的针对字符串的JSON响应

"\\3\\"

期望的响应是:

 "\3\"

这是我正在使用的地方

    $n = "\\3\\";

    $fields = array(
        'app_id' => "xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
        'filters' => array(array("field" => "tag", "key" => "etab", "relation" => "=", "value" => $n)),
        'data' => array("foo" => "bar"),
        'large_icon' =>"ic_launcher_round.png",
        'contents' => $content
    );

    $fields = json_encode($fields);

0 个答案:

没有答案