php-guzzleHow to convert a response to an array with PHP Guzzle?
To convert a response to an array with PHP Guzzle, you can use the json()
method. This method will return the response body as a JSON-decoded array.
Example code
$client = new GuzzleHttp\Client();
$response = $client->request('GET', 'http://example.com/api/endpoint');
$data = $response->json();
Output example
Array
(
[0] => value1
[1] => value2
[2] => value3
)
Code explanation
$client = new GuzzleHttp\Client();
: This creates a new Guzzle client.$response = $client->request('GET', 'http://example.com/api/endpoint');
: This sends a GET request to the specified endpoint.$data = $response->json();
: This converts the response body to a JSON-decoded array.
Helpful links
More of Php Guzzle
- How to set a user agent in PHP Guzzle?
- How to set a timeout for a request with PHP Guzzle?
- How to add an SSL certificate to a request with PHP Guzzle?
- How to handle a RequestException with PHP Guzzle?
- How to make an asynchronous send with PHP Guzzle?
- What version of PHP is required for Guzzle?
- How to make HTTP request with PHP Guzzle?
- How to stream with PHP Guzzle?
- How to troubleshoot cURL error 60 with Guzzle in PHP?
See more codes...