WordPress\AiClientDependencies\Psr\Http\Message
ServerRequestInterface::getParsedBody
Retrieve any parameters provided in the request body.
If the request Content-Type is either application/x-www-form-urlencoded or multipart/form-data, and the request method is POST, this method MUST return the contents of $_POST.
Otherwise, this method may return any results of deserializing the request body content; as parsing returns structured content, the potential types MUST be arrays or objects only. A null value indicates the absence of body content.
Метод класса: ServerRequestInterface{}
Хуков нет.
Возвращает
null|array|object. The deserialized body parameters, if any.
These will typically be an array or object.
Использование
$ServerRequestInterface = new ServerRequestInterface(); $ServerRequestInterface->getParsedBody();
Код ServerRequestInterface::getParsedBody() ServerRequestInterface::getParsedBody WP 7.1.2
public function getParsedBody();