Yngvarr

Generation

generate functionSun, 19 Mar 2023

domain tdl

function get_domain($url) { $pieces = parse_url($url); $domain = isset($pieces['host']) ? $pieces['host'] : ''; if (preg_match('/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.[a-z\.]{2,6})$/i', $domain, $regs)) { return $regs['domain']; } return false; } get_domain('http://www.google.com/a/b/c/d/e.html')

Questions about programming?Chat with your personal AI assistant