//http://open.weibo.com/wiki/2/short_url/shorten
//http://open.weibo.com/wiki/Help/error
//http://open.weibo.com/wiki/2/account/rate_limit_status 新版
///////////////////////////////////////////////////////////////////////获取新浪微博的T网址链接
//http://open.weibo.com/wiki/2/short_url/shorten
//http://open.weibo.com/wiki/Help/error
//http://open.weibo.com/wiki/2/account/rate_limit_status 新版
function GetTurl($url=''){
set_time_limit(0);
//$tApi="https://api.weibo.com/2/short_url/shorten.json?access_token=[你的token]&url_long=";
$tApi="https://api.weibo.com/2/short_url/shorten.json?source=[你的appkey]&url_long=";
$tApi=$tApi.urlencode($url);
$ret=file_get_contents($tApi);
$ret=json_decode($ret,true);
if($ret['error']) return $url;
if(is_array($ret['urls'])){
$r= $ret['urls'][0]['url_short'];
return $r;
}
return $url;
}
来自: http://www.55lm.net/ 