<?
$json_str 
file_get_contents("http://www.google.com/dictionary/json?callback=a&sl=en&tl=en&client=te&q=dog");
$json_str substr($json_str2strlen($json_str)-12); // -12的原因是因為要去除 a(...)中其他參數
echo $json_str//json_decode前
echo "<hr />";
print_r(json_decode(str_replace("\\x"""$json_str),true)); //json_decode後
exit();
?>http://www.grassboy.tw/tmp/json.phps