/ Published in: PHP
URL: http://k-coder.blogspot.com/2010/04/php-function-to-retrieve-original-url.html
Expand |
Embed | Plain Text
<?php function retrieve_shortened_link($shortUrl){ $headers = get_headers($shortUrl, 1); return $headers['Location'][0]; }else{ return $headers['Location']; } } ?>
You need to login to post a comment.
