PHP code example of aedart / athenaeum-http-messages
1. Go to this page and download the library: Download aedart/athenaeum-http-messages library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aedart / athenaeum-http-messages example snippets
$factory = $this->getHttpSerializerFactory();
$serializer = $factory->make($response);
echo (string) $serializer;
// Example Output:
//
// HTTP/1.1 201 Created
// Content-Type: application/json
//
// {"id":458712,"name":"Sven Jr.","age":27}