json_decode解析backslash時報錯

來源:互聯網
上載者:User
$array = array(    'code_pattern' => '\d{6}');//okprint_r(json_decode(json_encode($array),true));//errorprint_r(json_decode('{"code_pattern":"\\d{6}"}',true));

這個問題怎麼解決?

補充:

$array = array(    'code_pattern' => '\d{6}');$arr_str = json_encode($array);echo $arr_str . "\n";//okprint_r(json_decode($arr_str,true));//error$arr_dec = json_decode('{"code_pattern":"\\d{6}"}',true);var_dump($arr_dec);

結果:

.{"code_pattern":"\\d{6}"}Array(    [code_pattern] => \d{6})NULLTime: 102 ms, Memory: 7.25Mb

回複內容:

$array = array(    'code_pattern' => '\d{6}');//okprint_r(json_decode(json_encode($array),true));//errorprint_r(json_decode('{"code_pattern":"\\d{6}"}',true));

這個問題怎麼解決?

補充:

$array = array(    'code_pattern' => '\d{6}');$arr_str = json_encode($array);echo $arr_str . "\n";//okprint_r(json_decode($arr_str,true));//error$arr_dec = json_decode('{"code_pattern":"\\d{6}"}',true);var_dump($arr_dec);

結果:

.{"code_pattern":"\\d{6}"}Array(    [code_pattern] => \d{6})NULLTime: 102 ms, Memory: 7.25Mb

你輸出一下json_encode($array)的值就知道為什麼了。

測試了一下,json_encode($arry)會輸出{"code_pattern":"\\d{6}"},它將\進行了轉義。但是你需要使用json_decode('{"code_pattern":"\\\\d{6}"}')才能得到想要的結果\d{6}

題外話:SF怎麼不支援markdown刪除線的文法呢?我在編輯答案的時候是可以看到效果的,展示出來就沒有了。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.