Skip to content

Instantly share code, notes, and snippets.

@evgv
Created September 24, 2016 09:24
Show Gist options
  • Save evgv/3c1fa144a558d4ab688fc4098747b221 to your computer and use it in GitHub Desktop.
Save evgv/3c1fa144a558d4ab688fc4098747b221 to your computer and use it in GitHub Desktop.
PHP. Url shortener using tinyurl

Youtube download link generator

  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;  
  }

Usage

echo get_tiny_url('YOUR_FULL_URL_WITH_PROTOCOL');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment