SimplePie_HTTP_Parser::body() protected WP 1.0
Parse the body
{} Это метод класса: SimplePie_HTTP_Parser{}
Хуков нет.
Возвращает
null
. Null. Ничего.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->body();
Код SimplePie_HTTP_Parser::body() SimplePie HTTP Parser::body WP 5.7
protected function body()
{
$this->body = substr($this->data, $this->position);
if (!empty($this->headers['transfer-encoding']))
{
unset($this->headers['transfer-encoding']);
$this->state = 'chunked';
}
else
{
$this->state = 'emit';
}
}