共计 604 个字符,预计需要花费 2 分钟才能阅读完成。
要使用 PHP 从 API 获取数据,你需要使用 PHP 的内置函数 file_get_contents()
或者 curl
来发送 HTTP 请求,并解析返回的 JSON 数据。
以下是一个简单的示例:
// API 的 URL
$url = 'https://api.example.com/data';
// 使用 file_get_contents()发送 HTTP 请求并获取数据
$response = file_get_contents($url);
// 解析 JSON 数据
$data = json_decode($response, true);
// 输出数据
print_r($data);
如果你希望使用 curl
发送 HTTP 请求,可以使用以下示例:
// 初始化一个 cURL 会话
$ch = curl_init();
// 设置 cURL 选项
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// 执行 cURL 请求并获取数据
$response = curl_exec($ch);
// 关闭 cURL 会话
curl_close($ch);
// 解析 JSON 数据
$data = json_decode($response, true);
// 输出数据
print_r($data);
记得替换示例中的 API URL 为你要获取数据的 API 的实际 URL。
丸趣 TV 网 – 提供最优质的资源集合!
正文完