SaeTClientV2::edu_destroy PHP Method

edu_destroy() public method

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