<?php $doc = new DOMDocument; $doc->loadHTML('<html><body id="x"></body></html>'); $body = $doc->getElementById('x'); $div = $doc->createElement('div'); $div->setAttribute('id', 'y'); echo ( $doc->getElementById('y') ? $doc->getElementById('y')->tagName : 'null' ) . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.