Ip\Internal\Text\Html2Text::next_child_name PHP Method

next_child_name() protected static method

protected static next_child_name ( $node )
    protected static function next_child_name($node)
    {
        // get the next child
        $nextNode = $node->nextSibling;
        while ($nextNode != null) {
            if ($nextNode instanceof DOMElement) {
                break;
            }
            $nextNode = $nextNode->nextSibling;
        }
        $nextName = null;
        if ($nextNode instanceof DOMElement && $nextNode != null) {
            $nextName = mb_strtolower($nextNode->nodeName);
        }
        return $nextName;
    }