Sunday, 21 April 2013

Get Short URLs for Twitter with PHP


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

No comments:

Post a Comment