要使用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 = https://www.yisu.com/ask/json_decode($response, true);>如果你希望使用
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 = https://www.yisu.com/ask/json_decode($response, true);>记得替换示例中的API URL为你要获取数据的API的实际URL。