Summery Summery
Parse the input data
Syntax Syntax
Return Return
(string) Output data
Source Source
File: wp-includes/SimplePie/Decode/HTML/Entities.php
{
while (($this->position = strpos($this->data, '&', $this->position)) !== false)
{
$this->consume();
$this->entity();
$this->consumed = '';
}
return $this->data;
}