3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dom = new DOMDocument(); $dom->loadHtml(' <a href="http://example.com/books/1">The Lord of the Rings</a> <ul> <li><a href="http://example.com/books/1#c1" >Chapter 1</a></li> <li><a name="name before href" href="http://example.com/books/1#c2">Chapter 2</a></li> <li><a href="http://example.com/books/1#c3" name="name after href">Chapter 3</a></li> <li><a href="http://example.com/books/1#cN" target="_blank">Chapter N</a></li> </ul> <br><br> <a href="http://example.com/books/1">Harry Potter</a> <ul> <li><a href="http://example.com/books/2#c1" target="_self">Chapter 1</a></li> <li><a href="http://example.com/books/2#c2" name="some have name" title="some others have title" >Chapter 2</a></li> <li><a href="http://example.com/books/2#c3">Chapter 3</a></li> <li><a href="http://example.com/books/2#cN" >Chapter N</a></li> </ul> ', LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); $xpath = new DOMXPath($dom); foreach ($xpath->query("//a") as $link) { $href = $link->getAttribute('href'); if (strpos($href, '#') !== false) { $link->parentNode->nodeValue = $link->nodeValue; } } echo $dom->saveHTML();
Output for git.master, git.master_jit, rfc.property-hooks
<a href="http://example.com/books/1">The Lord of the Rings<ul> <li>Chapter 1</li> <li>Chapter 2</li> <li>Chapter 3</li> <li>Chapter N</li> </ul><br><br><a href="http://example.com/books/1">Harry Potter</a><ul> <li>Chapter 1</li> <li>Chapter 2</li> <li>Chapter 3</li> <li>Chapter N</li> </ul></a>

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:
25.32 ms | 406 KiB | 5 Q