3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = 'HTML String <h3>whatever</h3>'; $dom = new DOMDocument; $dom->loadHTML($html); $xpath = new DOMXPath($dom); foreach ($xpath->query('//h3') as $h3) { $h3->item(0)->nodeValue = ucfirst($h3->item(0)->nodeValue); }

preferences:
43.85 ms | 402 KiB | 5 Q