php://input: not always what it streams

php://input: not always what it streams

Since we are slowly implementing psr-7 concepts in our platform, we sometimes have to make our own implementation of something that is already out there in other frameworks, like Symfony or Zend.
One of those things is the StreamInterface which wraps the input of a request (or the output of a response) into a stream-like object.

When creating the request object for an incoming request the first thing to do is create a stream object for the incoming data. Since php provides this data as the I/O stream php://input, wrapping this native php stream is the logical course of action.

That is: until you want to seek in or rewind the stream. Even though stream_get_meta_data will tell you that the stream is seekable, it is not. After any seek operation (fseek or rewind) the stream will just return an empty string.

To prevent this you'll either need to cache the output of the stream or re-open the stream on a rewind call, which will work for php://input since php 5.6.

Leave a comment...

Leave a comment

Italic en bold

*Dit is italic*, en _dit ook_.
**Dit is bold**, en __dit ook__.

Links

Dit is een link naar [Procurios](http://www.procurios.nl).

Lijsten

Een lijst met bullets kan worden gemaakt met:
- Min-tekens,
+ Plus-tekens,
* Of een asterisk.

Een genummerde lijst kan worden gemaakt met:
1. Lijst-item nummer 1.
2. Lijst-item nummer 2.

Quote

Onderstaande tekst vormt een quote:
> Dit is de eerste regel.
> Dit is de tweede regel.

Code

Er kan een blok met code worden geplaatst. Door voor de tekst vier spaties te plaatsen, ontstaat een code-block.