$c = new WeiboClient( WB_AKEY , WB_SKEY , $_SESSION['last_key']['oauth_token'] , $_SESSION['last_key']['oauth_token_secret']  );
$me = $c->verify_credentials();
$sid = $me[0]['id'];
$result = $c->destroy($sid);
echo $result;
以上输出$result为空。程序没有报错,但也没有删除微博,本人感觉是$sid的问题,但不知道如何解决?请高手指点。