3
我已通過在文件xyz.php
中寫下以下代碼登錄到網站。當我運行這個文件時,我登錄到了moodle網站。是否有任何方法類似於以下登錄代碼註銷?Moodle身份驗證
$user = authenticate_user_login($username, $password);
complete_user_login($user);
我已通過在文件xyz.php
中寫下以下代碼登錄到網站。當我運行這個文件時,我登錄到了moodle網站。是否有任何方法類似於以下登錄代碼註銷?Moodle身份驗證
$user = authenticate_user_login($username, $password);
complete_user_login($user);
如果你看看文件https://github.com/moodle/moodle/blob/master/login/logout.php你會看到的功能require_logout()
這應該確保用戶被註銷的電話。
Thanks @davosmith – Pradnya 2014-10-07 15:10:13