git-svn-id: https://msi/svn/firstRepo/Service/branches/Slim3@40 0f545695-f87b-41b6-9a03-7f16563b5454
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/**
|
||||
* Slim Framework (http://slimframework.com)
|
||||
*
|
||||
* @link https://github.com/slimphp/Slim
|
||||
* @copyright Copyright (c) 2011-2015 Josh Lockhart
|
||||
* @license https://github.com/slimphp/Slim/blob/3.x/LICENSE.md (MIT License)
|
||||
*/
|
||||
namespace Slim\Http;
|
||||
|
||||
/**
|
||||
* Provides a PSR-7 implementation of a reusable raw request body
|
||||
*/
|
||||
class RequestBody extends Body
|
||||
{
|
||||
/**
|
||||
* Create a new RequestBody.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$stream = fopen('php://temp', 'w+');
|
||||
stream_copy_to_stream(fopen('php://input', 'r'), $stream);
|
||||
rewind($stream);
|
||||
|
||||
parent::__construct($stream);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user