What is PSR-7 and how to use it

PSR-7 is a set of common interfaces defined by PHP Framework Interop Group. These interfaces are representing HTTP messages, and URIs for use when communicating trough HTTP.

Any web application using this set of interfaces is a PSR-7 application.

More about interfaces and interfaces examples can be found here.

Interfaces

In this section the Interfaces methods will be listed. The purpose of this list is to help in finding the methods when working with PSR-7. This can be considered as a cheatsheet for PSR-7 interfaces. The interfaces defined in PSR-7 are the following:

Class NameDescription
Psr\Http\Message\MessageInterfaceRepresentation of a HTTP message
Psr\Http\Message\RequestInterfaceRepresentation of an outgoing, client-side request.
Psr\Http\Message\ServerRequestInterfaceRepresentation of an incoming, server-side HTTP request.
Psr\Http\Message\ResponseInterfaceRepresentation of an outgoing, server-side response.
Psr\Http\Message\StreamInterfaceDescribes a data stream
Psr\Http\Message\UriInterfaceValue object representing a URI.
Psr\Http\Message\UploadedFileInterfaceValue object representing a file uploaded through an HTTP request.

Working with PSR-7

The following examples will illustrate how basic operations are done in PSR-7.

Zend Diactoros is an implementation for PSR-7 interfaces. It will be used to illustrate these examples. Installation guide for Zend Diactoros: Zend Diactoros Documentation – Installation

All other PSR-7 implementations should have the same behaviour.

Alternative PSR-7 implementations.

To use the Zend Diactoros classes add this at the beggining of the php file:

use Zend\Diactoros\ServerRequestFactory;
use Zend\Diactoros\Response;

// autoloading

$request = ServerRequestFactory::fromGlobals($_SERVER, $_GET, $_POST, $_COOKIE, $_FILES);
$response = new Response();
 

Note: The article applies to all PSR-7 implementations from this point forward.

Working with HTTP Headers

Adding headers to response:

$response->withHeader('My-Custom-Header', 'My Custom Message');

Appending values to headers

$response->withAddedHeader('My-Custom-Header', 'The second message');

Checking if header exists:

$response->hasHeader('My-Custom-Header'); // will return true

Note: My-Custom-Header was only added in the Response

Getting comma-separated values from a header (also applies to request)

// getting value from request headers
$request->getHeaderLine('Content-Type'); // will return: "text/html; charset=UTF-8"
// getting value from response headers
$response->getHeaderLine('My-Custom-Header'); // will return:  "My Custom Message; The second message"
// getting value from request headers
$request->getHeaderLine('Content-Type'); // will return: "text/html; charset=UTF-8"
// getting value from response headers
$response->getHeaderLine('My-Custom-Header'); // will return:  "My Custom Message; The second message"

Getting array of value from a header (also applies to request)

// getting value from request headers
$request->getHeader('Content-Type'); // will return: ["text/html", "charset=UTF-8"]
// getting value from response headers
$response->getHeader('My-Custom-Header'); // will return:  ["My Custom Message",  "The second message"]

Removing headers from HTTP Messages

// removing a header from Request, removing deprecated "Content-MD5" header
$request->withoutHeader('Content-MD5'); 

// removing a header from Response
// effect: the browser won't know the size of the stream
// the browser will download the stream till it ends
$response->withoutHeader('Content-Length');

Working with HTTP Message Body

When working with the PSR-7 there are two methods of implementation:

1. Getting the body separately

This method makes the body handling easier to understand and is useful when repeatedly calling body methods. (You only call getBody() once). Using this method mistakes like $response->write() are also prevented.

$body = $response->getBody();
// operations on body, eg. read, write, seek
// ...
// replacing the old body
$response->withBody($body); 
// this last statement is optional as we working with objects
// in this case the "new" body is same with the "old" one
// the $body variable has the same value as the one in $request, only the reference is passed

2. Working directly on response

This method is useful when only performing few operations as the $request->getBody() statement fragment is required

$response->getBody()->write('hello');

Getting the body contents

The following snippet gets the contents of a stream contents.

Note: Streams must be rewinded, if content was written into streams, it will be ignored when calling getContents() because the stream pointer is set to the last character, which is \0 – meaning end of stream.


$body = $response->getBody();
$body->rewind(); // or $body->seek(0);
$bodyText = $body->getContends();

Note: If $body->seek(1) is called before $body->getContents(), the first character will be ommited as the starting pointer is set to 1, not 0. This is why using $body->rewind() is recommended.

Append to body

$response->getBody()->write('Hello'); // writing directly
$body = $request->getBody(); // which is a `StreamInterface`
$body->write('xxxxx');

Prepend to body

Prepending is different when it comes to streams. The content must be copied before writing the content to be prepended. The following example will explain the behaviour of streams.

// assuming our response is initially empty
$body = $repsonse->getBody();
// writing the string "abcd"
$body->write('abcd');

// seeking to start of stream
$body->seek(0);
// writing 'ef'
$body->write('ef'); // at this point the stream contains "efcd"

Prepending by rewriting separately

// assuming our response body stream only contains: "abcd"
$body = $response->getBody();
$body->rewind();
$contents = $body->getContents(); // abcd
// seeking the stream to beginning
$body->rewind();
$body->write('ef'); // stream contains "efcd"
$body->write($contents); // stream contains "efabcd"

Note: getContents() seeks the stream while reading it, therefore if the second rewind() method call was not present the stream would have resulted in abcdefabcd because the write() method appends to stream if not preceeded by rewind() or seek(0).

Prepending by using contents as a string

$body = $response->getBody();
$body->rewind(); // or $body->seek(0);
$bodyText = $body->getContends();

More information can be found in the PSR-7 article in DotKernel3 documentation portal.

Sources: PSR-7: HTTP messages zend-diactoros


Looking for PHP, Laminas or Mezzio Support?

As part of the Laminas Commercial Vendor Program, Apidemia offers expert technical support and services for:

  • Modernising Legacy Applications
  • Migration from any version of Zend Framework to Laminas
  • Migration from legacy Laminas API Tools (formerly Apigility) to Dotkernel API
  • Mezzio and Laminas Consulting and Technical Audit
  • 5 Comments

    1. PHP Annotated Monthly – June 2017 | PhpStorm Blog

      […] What is PSR-7 and How to Use It […]

    2. Monjur

      A simple type:

      $body = $response->getBody();
      $body->rewind(); // or $body->seek(0);
      $bodyText = $body->getContends(); => should be $bodyText = $body->getContents();

    3. Richard Hall

      I am new to all this.

      Exactly what is being accomplished with this code.

      “PSR-7 is a set of common interfaces defined by PHP Framework Interop Group. These interfaces are representing HTTP messages, and URIs for use when communicating trough HTTP.”.

      What is the point of thee ” HTTP messages, and URIs”?

      • Andrew Moore

        @Richard Hall

        I don’t know if you may have found your answer elsewhere, but the implementation documentation here doesn’t really explain well what this is for. The short answer is that it standardizes and simplifies the handling of HTTP messages which contains a URI.

        HTTP messages are essentially the messages you send to and from a client and server using the usual GET POST PUT etc methods. The PSR-7 Guidelines describe a series of interfaces that makes that process streamlined and useable in virtually any environment.

        Better explanations can be found here.

        https://www.php-fig.org/psr/psr-7/
        https://www.php-fig.org/psr/psr-7/meta/

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>