SaeTClientV2::car_destroy PHP Method

car_destroy() public method

对应API:{@link http://open.weibo.com/wiki/2/account/profile/car_destroy account/profile/car_destroy}
public car_destroy ( integer $id ) : array
$id integer 职业信息里的公司ID
return array
    function car_destroy($id)
    {
        $this->id_format($id);
        $params = array();
        $params['id'] = $id;
        return $this->oauth->post('account/profile/car_destroy', $params);
    }
SaeTClientV2