📅  最后修改于: 2022-03-11 14:54:36.395000             🧑  作者: Mango
$response = GuzzleHttp\get('http://httpbin.org/get');
if ($response->getBody()) {
echo $response->getBody();
// JSON string: { ... }
}