HttpResponse::getRequestBody

(No version information available, might be only in CVS)

HttpResponse::getRequestBody — Get request body

Descrição

static string HttpResponse::getRequestBody ( void )

Esta função é um apelido para: http_get_request_body().



User Contributed Notes
HttpResponse::getRequestBody
osborn dot steven at example dot com
23-Aug-2007 01:03
For those of you without the HTTP extension, try:
<?php
  $body
= @file_get_contents('php://input');
?>