11 lines
236 B
PHP
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 );
|
|
}
|
|
} |