利用126短網址API寫的一個函數

function tiny($longurl)
{
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,'http://126.am/api!shorten.action');
curl_setopt($ch,CURLOPT_POST,true);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
$data=array('key'=>'b55aaaa054094e749722b66edd5a7bd5','longUrl'=>$longurl);
curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
$strRes=curl_exec($ch);
curl_close($ch);
$arrResponse=json_decode($strRes,true);
return $arrResponse['url'];
}
?>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章