1. function ext_json_decode($str, $mode=false){
    2. $str = str_replace("'","\"",$str);
    3. if(preg_match('/\w:/', $str)){
    4. $str = preg_replace('/(\w+):/is', '"$1":', $str);
    5. }
    6. return json_decode($str, $mode);
    7. }