PHP 创建href.in短网址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 创建href.in短网址相关的知识,希望对你有一定的参考价值。

//gets the data from a URL  
function get_tiny_url($url)  
{  
	$ch = curl_init();  
	$timeout = 5;  
	curl_setopt($ch,CURLOPT_URL,'http://href.in/api.php?create='.$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://twitter.com/inerds');

//returns http://href.in/gh7uab
echo $new_url

以上是关于PHP 创建href.in短网址的主要内容,如果未能解决你的问题,请参考以下文章