How to get body of a POST in php?

后端 未结 8 1757
小蘑菇
小蘑菇 2020-11-22 01:25

I submit as POST to a php page the following:

{a:1}

This is the body of the request (a POST request).
In php, what do I have to do to

相关标签:
8条回答
  • 2020-11-22 01:34

    If you have the pecl/http extension installed, you can also use this:

    $request = new http\Env\Request();
    $request->getBody();
    
    0 讨论(0)
  • 2020-11-22 01:47

    return value in array

     $data = json_decode(file_get_contents('php://input'), true);
    
    0 讨论(0)
  • 2020-11-22 01:52

    A possible reason for an empty $_POST is that the request is not POST, or not POST anymore... It may have started out as post, but encountered a 301 or 302 redirect somewhere, which is switched to GET!

    Inspect $_SERVER['REQUEST_METHOD'] to check if this is the case.

    See https://stackoverflow.com/a/19422232/109787 for a good discussion of why this should not happen but still does.

    0 讨论(0)
  • 2020-11-22 01:55

    If you have installed HTTP PECL extension, you can make use of the http_get_request_body() function to get body data as a string.

    0 讨论(0)
  • 2020-11-22 01:55
    function getPost()
    {
        if(!empty($_POST))
        {
            // when using application/x-www-form-urlencoded or multipart/form-data as the HTTP Content-Type in the request
            // NOTE: if this is the case and $_POST is empty, check the variables_order in php.ini! - it must contain the letter P
            return $_POST;
        }
    
        // when using application/json as the HTTP Content-Type in the request 
        $post = json_decode(file_get_contents('php://input'), true);
        if(json_last_error() == JSON_ERROR_NONE)
        {
            return $post;
        }
    
        return [];
    }
    
    print_r(getPost());
    
    0 讨论(0)
  • 2020-11-22 01:56

    To access the entity body of a POST or PUT request (or any other HTTP method):

    $entityBody = file_get_contents('php://input');
    

    Also, the STDIN constant is an already-open stream to php://input, so you can alternatively do:

    $entityBody = stream_get_contents(STDIN);
    

    From the PHP manual entry on I/O streamsdocs:

    php://input is a read-only stream that allows you to read raw data from the request body. In the case of POST requests, it is preferable to use php://input instead of $HTTP_RAW_POST_DATA as it does not depend on special php.ini directives. Moreover, for those cases where $HTTP_RAW_POST_DATA is not populated by default, it is a potentially less memory intensive alternative to activating always_populate_raw_post_data. php://input is not available with enctype="multipart/form-data".

    Specifically you'll want to note that the php://input stream, regardless of how you access it in a web SAPI, is not seekable. This means that it can only be read once. If you're working in an environment where large HTTP entity bodies are routinely uploaded you may wish to maintain the input in its stream form (rather than buffering it like the first example above).

    To maintain the stream resource something like this can be helpful:

    <?php
    
    function detectRequestBody() {
        $rawInput = fopen('php://input', 'r');
        $tempStream = fopen('php://temp', 'r+');
        stream_copy_to_stream($rawInput, $tempStream);
        rewind($tempStream);
    
        return $tempStream;
    }
    

    php://temp allows you to manage memory consumption because it will transparently switch to filesystem storage after a certain amount of data is stored (2M by default). This size can be manipulated in the php.ini file or by appending /maxmemory:NN, where NN is the maximum amount of data to keep in memory before using a temporary file, in bytes.

    Of course, unless you have a really good reason for seeking on the input stream, you shouldn't need this functionality in a web application. Reading the HTTP request entity body once is usually enough -- don't keep clients waiting all day while your app figures out what to do.

    Note that php://input is not available for requests specifying a Content-Type: multipart/form-data header (enctype="multipart/form-data" in HTML forms). This results from PHP already having parsed the form data into the $_POST superglobal.

    0 讨论(0)
提交回复
热议问题