線上增減.htpasswd內的使用者_PHP教程

來源:互聯網
上載者:User
線上增減.htpasswd內的使用者

include("./class.Htpasswd.php3");

/* 請修改此.htpasswd檔案路徑
*/
$htpasswdfile = "/usr2/amitc/.htpasswd";


// 此行請勿修改
echo '
if(!isset($operation)) {
}
else {
echo " ";
echo "您剛進行了此項操作,請核查
";
echo "您要對使用者 $username 及密碼 $password 進行 = [$doop]
";
$handle = new Htpasswd($htpasswdfile);

switch ($doop) {
case 'add':
print "使用者
";
$retval = $handle->addUser($username, $password);
if($retval) {
print "使用者 [$username] 加入成功!
";
} else {
print "加入使用者 [$username] 失敗.
";
}
break;

case 'change':
print '修改密碼
';
$retval = $handle->changePass($username, $password);
if($retval) {
print "[$username] 的密碼修改成功.
";
} else {
print "[$username] 的密碼修改失敗.
";
}
break;

case 'delete':
print '刪除使用者
';
$retval = $handle->deleteUser($username);
if($retval) {
print "[$username] 被刪除.
";
} else {
print "刪除 [$username]時發生錯誤.
";
}
break;

case 'verify':
print 'Code to verify user's password
';
$retval = $handle->verifyUser($username, $password);
if($retval) {
print "[$username] verifies okay with password [$password]
";
} else {
print "Verify Error for [$username] with [$password] (wrong password or user doesn't exist!)
";
}

break;

default:
print '您要中斷?
';
}
echo "";
}
?>

http://www.bkjia.com/PHPjc/316627.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/316627.htmlTechArticle線上增減.htpasswd內的使用者 ?php include(./class.Htpasswd.php3); /* 請修改此.htpasswd檔案路徑 */ $htpasswdfile = /usr2/amitc/.htpasswd; // 此行請勿修改 echo 'FOR...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.