pQuery\DomNode::html PHP Метод

html() публичный Метод

Return html code of node
См. также: toString()
public html ( string | null $value = null ) : string
$value string | null The value to set or null to get the value.
Результат string
    function html($value = null)
    {
        if ($value !== null) {
            $this->setInnerText($value);
        }
        return $this->getInnerText();
    }
DomNode