PHPHtmlParser\Dom\AbstractNode::innerHtml PHP 메소드

innerHtml() 추상적인 공개 메소드

Gets the inner html of this node.
abstract public innerHtml ( ) : string
리턴 string
    public abstract function innerHtml();

Usage Example

예제 #1
0
 public function format(AbstractNode $node)
 {
     return new TextNode(Parsedown::instance()->setBreaksEnabled(true)->setMarkupEscaped(true)->text($node->innerHtml()));
 }