나는 그 IMDB API를 제공하고 있으며,이 사이트를 발견 http://www.omdbapi.com/?i=tt0903624IMDB Api, 제목과 그림 만 검색하십시오. <a href="http://www.omdbapi.com" rel="nofollow">http://www.omdbapi.com</a></p> <p>과 호빗의가이 같이 충분히 쉽게 예를 들어 얻기를 위해 :
그럼이 모든 정보를 얻을 :
{"Title":"The Hobbit: An Unexpected Journey","Year":"2012","Rated":"11","Released":"14 Dec 2012","Runtime":"2 h 46 min","Genre":"Adventure, Fantasy","Director":"Peter Jackson","Writer":"Fran Walsh, Philippa Boyens","Actors":"Martin Freeman, Ian McKellen, Richard Armitage, Andy Serkis","Plot":"A curious Hobbit, Bilbo Baggins, journeys to the Lonely Mountain with a vigorous group of Dwarves to reclaim a treasure stolen from them by the dragon Smaug.","Poster":"http://ia.media-imdb.com/images/M/[email protected]@._V1_SX300.jpg","imdbRating":"9.2","imdbVotes":"5,666","imdbID":"tt0903624","Response":"True"}
을
것은 제목, 연도 및 줄거리 정보를 예를 들어서 만보기를 원하며이 부분 만 검색 할 수 있는지 궁금합니다.
PHP를 사용하고 싶습니다.
최고 해결책을 시도했을 때이 오류가 발생했습니다. "치명적인 오류 : 형식이 stdClass 인 객체를 배열로 사용할 수 없습니다." – user1133188
json_decode의 기본값은 객체이기 때문에 가능합니다. 편집 할 때마다 (리뷰를 얻을 때마다) 두 번째 매개 변수를 배열로 디코딩하도록 설정하여 수정했습니다. 대안으로, 첫 번째 예에서 객체 표기법을 사용하여 기본 json_decode 데이터에 액세스 할 수 있습니다. 예 : 'Title'=> $ data-> Title, 'Plot'=> $ data-> Plot' – taswyn