Come espandere short URL o tracciare i link in PHP

Se state cercando un modo per espandere gli short url o capire dove i link portano con PHP, vi basterà fare:

E il risultato sarà:

https://marcotini.com
$url = "http://goo.gl/lCXVwi";
$headers = get_headers($url,1);
if (!empty($headers['Location'])) {
$headers['Location'] = (array) $headers['Location'];
$url = array_pop($headers['Location']);
}
echo $url;

Semplice no?!


Pubblicato

in

da