iammordaty / guzzle-urlencoded-response-middleware
Simple Guzzle 6.x URL-encoded response middleware
0.1
2019-10-24 15:19 UTC
Requires
- php: >=7.1
- guzzlehttp/promises: ^1.0
- guzzlehttp/psr7: ^1.6.1
This package is auto-updated.
Last update: 2025-03-29 00:37:09 UTC
README
Simple Guzzle 6.x URL-encoded response middleware.
Installation
$ composer require iammordaty/guzzle-urlencoded-response-middleware
Requirements
- PHP 7.1
Sample usage
use GuzzleHttp\Client; use GuzzleHttp\Handler\MockHandler; use GuzzleHttp\HandlerStack; use GuzzleHttp\Psr7\Response; use GuzzleUrlEncodedResponseMiddleware\UrlEncodedResponseMiddleware; use function GuzzleHttp\Psr7\stream_for; $body = 'id=78349&name=John%20Smith&username=%40smith&email=hello%40smith.com&phone=%2B1-202-555-0192&website=smith.dev'; // IRL: fetch data from server $mock = new MockHandler([ (new Response())->withBody(stream_for($body)) ]); $stack = HandlerStack::create($mock); $stack->push(new UrlEncodedResponseMiddleware(), UrlEncodedResponseMiddleware::NAME); $client = new Client([ 'handler' => $stack ]); $response = $client->get('/'); $contents = $response->getBody()->getUrlDecodedParsedContents(); print_r($contents); /* Outputs: Array ( [id] => 78349 [name] => John Smith [username] => @smith [email] => hello@smith.com [phone] => +1-202-555-0192 [website] => smith.dev ) */ $response->getBody()->rewind(); echo $response->getBody()->getUrlDecodedContents(); // Outputs: id=78349&name=John Smith&username=@smith&email=hello@smith.com&phone=+1-202-555-0192&website=smith.dev
License
iammordaty/guzzle-urlencoded-response-middleware is licensed under the MIT License.