日期:2014-05-17 浏览次数:20444 次
function _json_decode($json){ $comment = false; $out = '$x='; for ($i=0; $i<strlen($json);$i++){ if (!$comment){ if (($json[$i] == '{') || ($json[$i] == '[')) $out .= ' array('; else if (($json[$i] == '}') || ($json[$i] == ']')) $out .= ')'; else if ($json[$i] == ':') $out .= '=>'; else $out .= $json[$i]; }else $out .= $json[$i]; if($json[$i]== '"' && $json[($i-1)]!="\\") $comment = !$comment; } eval($out.';'); return $x; } $json='{"name":"hello world!","arr":[1,2,3,4]}'; print_r(_json_decode($json));