gpt4 book ai didi

php - 如何使用 php 脚本连接 ombd api

转载 作者:行者123 更新时间:2023-11-29 09:38:32 24 4
gpt4 key购买 nike

我已经为网站创建了一个搜索选项,以使用 mysql 数据库获取电影详细信息,但我想使用 omdb api 连接它们,但我不知道请帮助我

这是我使用 mysql 数据库的数据库连接

<?php

//variables
$server = "localhost";
$username = "root";
$password = "";
$dbname = "devsearch";


$conn = mysqli_connect($server, $username, $password, $dbname);

OMDb API:http://www.omdbapi.com/?i=tt3896198&apikey=[MY_API_KEY]

最佳答案

如果您的问题是如何使用 PHP 脚本从开放电影数据库检索信息,您可以使用以下 PHP 代码:

function getImdbRecord($ImdbId, $ApiKey)
{
$path = "http://www.omdbapi.com/?i=$ImdbId&apikey=$ApiKey";
$json = file_get_contents($path);
return json_decode($json, TRUE);
}

$data = getImdbRecord("tt3896198", "f3d054e8");

echo "<pre>";
print_r($data);
echo "</pre>";

请阅读the tip in the PHP manual about fopen wrappers如果您在读取 ​​URL 时遇到困难。

上面的代码将返回以下结果:

Array
(
[Title] => Guardians of the Galaxy Vol. 2
[Year] => 2017
[Rated] => PG-13
[Released] => 05 May 2017
[Runtime] => 136 min
[Genre] => Action, Adventure, Comedy, Sci-Fi
[Director] => James Gunn
[Writer] => James Gunn, Dan Abnett (based on the Marvel comics by), Andy Lanning (based on the Marvel comics by), Steve Englehart (Star-Lord created by), Steve Gan (Star-Lord created by), Jim Starlin (Gamora and Drax created by), Stan Lee (Groot created by), Larry Lieber (Groot created by), Jack Kirby (Groot created by), Bill Mantlo (Rocket Raccoon created by), Keith Giffen (Rocket Raccoon created by), Steve Gerber (Howard the Duck created by), Val Mayerik (Howard the Duck created by)
[Actors] => Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel
[Plot] => The Guardians struggle to keep together as a team while dealing with their personal family issues, notably Star-Lord's encounter with his father the ambitious celestial being Ego.
[Language] => English
[Country] => USA
[Awards] => Nominated for 1 Oscar. Another 12 wins & 42 nominations.
[Poster] => https://m.media-amazon.com/images/M/MV5BMTg2MzI1MTg3OF5BMl5BanBnXkFtZTgwNTU3NDA2MTI@._V1_SX300.jpg
[Ratings] => Array
(
[0] => Array
(
[Source] => Internet Movie Database
[Value] => 7.7/10
)

[1] => Array
(
[Source] => Rotten Tomatoes
[Value] => 84%
)

[2] => Array
(
[Source] => Metacritic
[Value] => 67/100
)

)

[Metascore] => 67
[imdbRating] => 7.7
[imdbVotes] => 489,848
[imdbID] => tt3896198
[Type] => movie
[DVD] => 22 Aug 2017
[BoxOffice] => $389,804,217
[Production] => Walt Disney Pictures
[Website] => https://marvel.com/guardians
[Response] => True
)

关于php - 如何使用 php 脚本连接 ombd api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57123361/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com