要在 PHP 中调用 Golang 编写的 API,您需要使用 PHP 的 cURL 或者 Guzzle 等 HTTP 客户端库来发起 HTTP 请求。以下是一个使用 cURL 调用 Golang API 的示例:
首先,确保您的 Golang API 已经运行并且可以接受请求。例如,您的 API 运行在 http://localhost:8080/api/v1/your-endpoint。
在 PHP 代码中,使用 cURL 发起请求:
<?php$url = "http://localhost:8080/api/v1/your-endpoint";$ch = curl_init($url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);$response = curl_exec($ch);if (curl_errno($ch)) { echo '请求发生错误:' . curl_error($ch);} else { $response = json_decode($response, true); // 处理 API 返回的数据 print_r($response);}curl_close($ch);?>如果您想使用 Guzzle(一个流行的 PHP HTTP 客户端库),请先安装 Guzzle:composer require guzzlehttp/guzzle然后在 PHP 代码中使用 Guzzle 发起请求:<?phprequire 'vendor/autoload.php';use GuzzleHttp\Client;$client = new Client();$url = 'http://localhost:8080/api/v1/your-endpoint';try { $response = $client->request('GET', $url); $data = json_decode($response->getBody(), true); // 处理 API 返回的数据 print_r($data);} catch (\GuzzleHttp\Exception\RequestException $e) { echo '请求发生错误:' . $e->getMessage();}?>这样,您就可以在 PHP 中调用 Golang 编写的 API 了。请根据实际情况修改 API 地址和请求参数。


