Files
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

11 lines
236 B
PHP

<?php
class Brizy_Parser_DomNode extends pQuery\DomNode {
/**
* Similar to JavaScript innerText, will return (html formatted) content
* @return string
*/
function getInnerText() {
return $this->toString( true, true, 1 );
}
}