3v4l.org

run code in 300+ PHP versions simultaneously
<?php // get host name from URL preg_match('@^(?:http://)?([^/]+)@i', "http://example.co.uk", $matches); $host = $matches[1]; // get last two segments of host name preg_match('/([^.]+)\.[^.]+$/', $host, $matches); echo "domain name is: {$matches[1]}\n";

preferences:
57.19 ms | 402 KiB | 5 Q