Create a TinyURL with PHP

TinyURL is an awesome service. For those who don't know what TinyURL is, TinyURL allows you to take a long URL like "http://davidwalsh.name/jquery-link-nudging" and turn it into "http://tinyurl.com/67c4se". Using the PHP and TinyURL API, you can create these tiny URLs on the fly!

The PHP

//gets the data from a URL  
function get_tiny_url($url)  {  
	$ch = curl_init();  
	$timeout = 5;  
	curl_setopt($ch,CURLOPT_URL,'http://tinyurl.com/api-create.php?url='.$url);  
	curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);  
	curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);  
	$data = curl_exec($ch);  
	curl_close($ch);  
	return $data;  
}

//test it out!
$new_url = get_tiny_url('http://davidwalsh.name/php-imdb-information-grabber');

//returns http://tinyurl.com/65gqpp
echo $new_url

Simply provide the URL and you'll received the new, tiny URL in return. If you use Twitter, you'll have noticed that Twitter automates tiny URL creation for URLs in tweets.


Comments

  1. Rich

    David, great post as always. you are starting to get me creeped out, because I was thinking about something like this yesterday. and now I dont have to reinvent the wheel.

    amazing!

  2. feir

    Thanks a lot for this trick. It is very usable.

  3. bigbrother

    Seems you can even use is.gd in much the same way http://is.gd/api.php?longurl=

    Link to the API info. http://is.gd/api_info.php
    I like is.gd a bit more than tinyurl because the urls are smaller.

  4. meir

    use file_get_contents:

    <?php
    function tinyurl($url) {
    return file_get_contents(‘http://tinyurl.com/api-create.php?url=’.$url);
    }
    ?>

  5. patriotfan

    I’m so confused
    I tested it out on my site and it works great.
    But where is it getting the $url from?

  6. Daniel

    Why not use this

  7. Daniel

    Sry…

    <?php
    function tiny_url($url){
    return file_get_contents(‘http://tinyurl.com/api-create.php?url=’ . $url);
    }
    $url = ‘http://www.url.com/’;
    echo tiny_url($url);
    ?>

  8. php kursu

    thank you

  9. tx8

    Clear, fast and easy.Thank you :)

  10. Jonas Lejon

    Hey David! I’ve just release an API for to.ly:

    PHP Code sample:

    function CompressURL($url) {

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, “http://to.ly/api.php?longurl=”.urlencode($url));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
    curl_setopt($ch, CURLOPT_HEADER, 0);

    $html = curl_exec ($ch);
    curl_close ($ch);

    return $html;

    }

    echo CompressURL(“http://twitter.com”); // Test

  11. pampers

    hai alll….thanks for the tricksss…. if i use daniel’s sample….my page take a bit long to load….. hmmm any other way to prevent this???

    thanksss

  12. Jerome

    Thank you, I used it!

  13. mark edwards

    it worked out of the box!

    next improvement – tinyurl lets us “customize” the url with an optional alias – think we can add this somehow?

  14. Mohamed Sanaulla

    @Daniel: It works fine. But when the server has diabled the file_get_contents() it will create problems. I had the same problem. But when i used cURL() it worked fine.

  15. streetparade

    Hello Thanks for the tip. Tinyurl is very usable , it doesnt need a api key, bit.ly needs one so i use tinyurl ;-)

  16. Otavio Theiss

    Nice job man. tks

  17. abhay

    I tried using it on my local host…
    but it doesnt seem’s to be working… and yes im connected to the internet… it gives error with the
    curl_init();

    ………

  18. Person0001

    This works great.

  19. andrei

    Here is short URL which i recommend you all: http://go.af , its called go air force.

  20. bigmander

    hi fellows
    first of all this is a great post, and i will include this to my website, but there’s a little problem this function only works with an url with the next format “http://www.xxx.com” and with this kind of one “http://www.xxx.com/xxx.php”, what do you suggest me to solve this!

    i summon all the internet gurus!!!

  21. Wellwind

    It’s useful for me! thx~~

  22. jeff

    Nice job, Dave.
    It works as a charm.

    Did you notice TinyURL re-assigns the same short-url on duplicate URLs? (which is the behaviour I needed, indeed!)

  23. myron

    Works really nice, Thanks…

    I’m combining this with the Google QR Code API to generate qr images for a shopping cart I am developing for a school project…

  24. Liz

    Total noob question, but where does the code go exactly? Above every php file?

  25. mark

    liz –

    you can simply copy/paste this block of code inside of the

    and it should work right out of the box. just cut-paste the example URL to whatever you want.

    be sure to check out his php-IMAP interface too – its pretty awesome!

    • Liz

      Awesome! It really works…. so cool! Thanks, and I most certainly will. XD

  26. siniz

    thank you so much!
    had a problem with the file_get_content…
    this works great!

  27. Tinu ch | Edebat

    [...] Create a TinyURL with PHPDec 23, 2008 … Using the PHP and TinyURL API, you can create these tiny URLs on the fly! … // gets the data from a URL function get_tiny_url($url) { $ch … [...]


Be Heard!

Share your thoughts without being a jerk! And wrap your code in <code> tags, f00!

Name*:
Email*:
Website: