3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = file_get_contents('http://www.google.com'); $html = mb_convert_encoding($html, 'HTML-ENTITIES', "UTF-8"); $dom = new DOMDocument; $dom->loadHTML($html); $xpath = new DOMXPath($dom); $query = $xpath->query("/html/body"); $body = $dom->saveXML($query->item(0)); $body = strip_tags($body); echo end(explode('Advertising Programs', $body));

preferences:
34.27 ms | 402 KiB | 5 Q