PHP konvertieren die Guzzle -Reaktion auf JSON
$response = GuzzleHttp\get('http://httpbin.org/get');
if ($response->getBody()) {
echo $response->getBody();
// JSON string: { ... }
}
Glorious Grivet