3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = 'This should be extracted <p>I do not want this</p> This should also be extracted <a>This may appear after other tags and I do not want this</a>'; $doc = new DOMDocument(); $doc->loadHTML("<div>$html</div>", LIBXML_HTML_NODEFDTD | LIBXML_HTML_NOIMPLIED); $xpath = new DOMXPath($doc); $texts = array(); foreach ($xpath->query('/div/text()') as $text) { $texts[] = $text->nodeValue; } print_r($texts);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => This should be extracted [1] => This should also be extracted )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
45.85 ms | 401 KiB | 8 Q