pQuery\DomNode::append PHP 메소드

append() 공개 메소드

public append ( $content )
    public function append($content)
    {
        $nodes = $this->createNodes($content);
        foreach ($nodes as $node) {
            $node->changeParent($this);
        }
        return $this;
    }
DomNode