Destination

Component ID

1367030

Component name

Destination

Component type

module

Maintenance status

Development status

Component security advisory coverage

covered

Downloads

693

Component created

Component changed

Component body

This little module enables you to find the destination url of a short url.

For example, if bit.ly/123 is a short url for youtube.com/12345678901234567890, you can do this:

<?php
  $short_url = 'http://bit.ly/123';
  $destination_url = destination_url($short_url);
?>

Now $destination_url's value will be http://youtube.com/12345678901234567890.