Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从http://itunes.apple.com/search?term=jack+johnson检索 json 输出数据
我正在使用 cakephp 1.3。
知道我们如何实现这一目标吗?
$json = file_get_contents("http://www......."); $array = json_decode($json); print_r($array);
那是你要找的吗?应该管用 :)