0

私はimdb APIを使用しています

 $homepage = file_get_contents('http://www.imdbapi.com/?i='.$imdbID);
            $arr = json_decode($homepage);

$arr には、関連する映画に関するすべてのデータがあります。

 Maguire [Year] => 1996 [Rated] => R [Released] => 13 Dec 1996 [Genre] => Comedy, Drama, Romance, Sport [Director] => Cameron Crowe [Writer] => Cameron Crowe [Actors] => Tom Cruise, Cuba Gooding Jr., Renée Zellweger, Kelly Preston [Plot] => When a sports agent has a moral epiphany and is fired for expressing it, he decides to put his new philosophy to the test as an independent with the only athlete who stays with him. [Poster] => http://ia.media-imdb.com/images/M/MV5BMTkxNjc2NjQwOF5BMl5BanBnXkFtZTcwMDE2NDU2MQ@@._V1_SX320.jpg [Runtime] => 2 hrs 19 mins [Rating] => 7.2 [Votes] => 97329 [ID] => tt0116695 [Response] => True )

私が欲しいのは、指定されたキーの値に到達することです。

そのような機能はありますか?たとえば、キー=> アクターを指定して、すべてのアクターを取得しますか?

4

1 に答える 1

2

:/ このような?

$homepage = file_get_contents('http://www.imdbapi.com/?i='.$imdbID);
$arr = json_decode($homepage, true);
print($arr['Actors']);
于 2012-04-15T22:32:03.470 に答える