function getTimeTableVNU($user, $pass)
{
    $url = 'http://dangkyhoc.daotao.vnu.edu.vn/dang-nhap';
    $browser = new fCurl();
    $browser->refer = $url;
    $browser->resetopt();
    $browser->get($browser->refer, true, 1);
    $browser->get($browser->refer, true, 1);
    $str_temp = $browser->return;
    $str_temp = explode('__RequestVerificationToken', $str_temp)[1];
    $str_temp = explode('>', $str_temp)[0];
    $str_temp = explode('value="', $str_temp)[1];
    $verti = explode('"', $str_temp)[0];
    /**
     * Đăng nhập
     */
    $field = ['LoginName' => $user, 'Password' => $pass, '__RequestVerificationToken' => $verti];
    $browser->post($url, $field, 1, 0);
    $contentX = $browser->return;
    if (strpos($contentX, '/Account/Logout') === false) {
        return false;
    }
    /**
     * Lấy source trang thời khóa biểu
     */
    $url_time = 'http://dangkyhoc.daotao.vnu.edu.vn/xem-va-in-ket-qua-dang-ky-hoc/1?layout=main';
    $browser->get($url_time, 1, 0);
    $source_html = $browser->return;
    $timeTable = explode('<table style="border:none; width: 100%; border-collapse:collapse;">', $source_html)[1];
    $timeTable = explode('</table>', $timeTable)[0];
    $trs = explode('<tr>', $timeTable);
    $count_str = count($trs);
    $arrLMH = [];
    for ($i = 2; $i < $count_str - 1; $i++) {
        $tr = $trs[$i];
        $maLMH = explode('<td', $tr)[7];
        $maLMH = explode('</td>', $maLMH)[0];
        $maLMH = explode('&nbsp;', $maLMH)[1];
        $arrLMH[] = $maLMH;
    }
    /**
     * Lấy tên sinh viên
     */
    $name = explode('Chào mừng: ', $contentX)[1];
    $name = explode('<', $name)[0];
    $name = trim($name);
    $name = html_entity_decode($name);
    return ['timeTable' => $arrLMH, 'name' => $name];
}
function getTimeTableUET($maSV)
{
    $url = 'http://203.113.130.218:50223/congdaotao/module/qldt/?SinhvienLmh%5BmasvTitle%5D=' . $maSV . '&SinhvienLmh%5BhotenTitle%5D=&SinhvienLmh%5BngaysinhTitle%5D=&SinhvienLmh%5BlopkhoahocTitle%5D=&SinhvienLmh%5BtenlopmonhocTitle%5D=&SinhvienLmh%5BtenmonhocTitle%5D=&SinhvienLmh%5Bnhom%5D=&SinhvienLmh%5BsotinchiTitle%5D=&SinhvienLmh%5Bghichu%5D=&SinhvienLmh%5Bterm_id%5D=019&SinhvienLmh_page=1&ajax=sinhvien-lmh-grid';
    $browser = new fCurl();
    $browser->refer = $url;
    $browser->resetopt();
    $browser->get($browser->refer, true, 0);
    $content = $browser->return;
    $content = explode('id="sinhvien-lmh-grid"', $content)[1];
    $content = explode('</tbody>', $content)[0];
    $content = explode('<tbody>', $content)[1];
    $trs = explode('</tr>', $content);
    $count_str = count($trs);
    if ($count_str == 2) {
        return false;
    }
    $tr_first = $trs[0];
    //Name
    $name_sv = explode('<td style="width: 100px">', $tr_first)[1];
    $name_sv = explode('</td>', $name_sv)[0];
    //QH-2013-I/CQ-C-CLC
    $qh = explode('<td style="width: 100px">', $tr_first)[2];
    $qh = explode('</td>', $qh)[0];
    $arrLMH = [];
    for ($i = 0; $i < $count_str - 1; $i++) {
        $tr = $trs[$i];
        $maLMH = explode('<td style="width: 50px">', $tr)[1];
        $maLMH = explode('</td>', $maLMH)[0];
        $nhom = explode('<td style="width: 15px">', $tr)[1];
        $nhom = explode('</td>', $nhom)[0];
        if ($nhom == 'CL') {
            $nhom = 0;
        }
        $lmh = new stdClass();
        $lmh->maLMH = $maLMH;
        $lmh->nhom = intval($nhom);
        $arrLMH[] = $lmh;
    }
    return ['name' => $name_sv, 'qh' => $qh, 'timetable' => $arrLMH];
}