Advertisement
Guest User

shorturl

a guest
May 3rd, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. public function getShortUrl($url)  {
  2.     $ch = curl_init();
  3.     curl_setopt($ch,CURLOPT_URL,'http://is.gd/api.php?longurl='.$url);  
  4.     curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);  
  5.     curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,5);  
  6.     $content = curl_exec($ch);  
  7.     curl_close($ch);
  8.        
  9.     return trim($content);  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement