Çözümlü url gelen url tersine çevirmek için bir yolu var mı?
$url = 'http://www.domain.com/dir/index.php?query=blabla#more_bla';
$parse = parse_url($url);
print_r($parse);
/*
array(
'scheme'=>'http://',
etc....
)
*/
$revere = reverse_url($parse); // probably does not exist but u get the point
echo $reverse;
//outputs:// "http://www.domain.com/dir/index.php?query=blabla#more_bla"
Ya bir yol tavsiye edilen adresler kısmını eksik bir url doğrulamak varsa örneğin
www.mydomain.com
mydomain.com
should all return
http://www.mydomain.com
or with correct sub domain