generate functionWed, 21 Dec 2022

remov edomain from url dyamically

function remove_domain($url) { $url = str_replace('http://', '', $url); $url = str_replace('https://', '', $url); $url = str_replace('www.', '', $url); $url = explode('/', $url); return $url[0]; }

Questions about programming?Chat with your personal AI assistant