File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/php-http/client-common/src/Plugin/ContentLengthPlugin.php
Back
<?php namespace AmeliaHttp\Client\Common\Plugin; use AmeliaHttp\Client\Common\Plugin; use AmeliaHttp\Message\Encoding\ChunkStream; use AmeliaPsr\Http\Message\RequestInterface; /** * Allow to set the correct content length header on the request or to transfer it as a chunk if not possible. * * @author Joel Wurtz <joel.wurtz@gmail.com> */ final class ContentLengthPlugin implements Plugin { /** * {@inheritdoc} */ public function handleRequest(RequestInterface $request, callable $next, callable $first) { if (!$request->hasHeader('Content-Length')) { $stream = $request->getBody(); // Cannot determine the size so we use a chunk stream if (null === $stream->getSize()) { $stream = new ChunkStream($stream); $request = $request->withBody($stream); $request = $request->withAddedHeader('Transfer-Encoding', 'chunked'); } else { $request = $request->withHeader('Content-Length', (string) $stream->getSize()); } } return $next($request); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings