php實現網頁安全認證的代碼詳解

來源:互聯網
上載者:User
這篇文章主要介紹了PHP網頁安全認證的執行個體詳解的相關資料,這裡提供了兩種實現方法,一種基於資料庫另一種不基於資料庫的方法,希望通過本能協助到大家,需要的朋友可以參考下

PHP網頁安全認證的執行個體詳解

不基於資料庫:


<?php    //unset($_SERVER['PHP_AUTH_USER']);    $strAuthUser= $_SERVER['PHP_AUTH_USER'];          $strAuthPass= $_SERVER['PHP_AUTH_PW']; if (! ($strAuthUser == "a" && $strAuthPass == "a")) {  header('WWW-Authenticate: Basic realm="wly"');  header('HTTP/1.0 401 Unauthorized');  echo "使用者驗證!!";  exit; } else {  echo "驗證通過";    header("location:http://www.baidu.com");  //unset($_SERVER['PHP_AUTH_USER']);   }?>

基於資料庫:


<?php  function authenticate_user() {    header('WWW-Authenticate: Basic realm="Secret Stash"');   header("HTTP/1.0 401 Unauthorized");    exit;  }   if (! isset($_SERVER['PHP_AUTH_USER'])) {    authenticate_user();  } else {    mysql_pconnect("localhost","authenticator","secret") or die("Can't connect to database server!");    mysql_select_db("java2s") or die("Can't select authentication database!");    $query = "SELECT username, pswd FROM user WHERE username='$_SERVER[PHP_AUTH_USER]' AND pswd=MD5('$_SERVER[PHP_AUTH_PW]')";     $result = mysql_query($query);     // If nothing was found, reprompt the user for the login information.    if (mysql_num_rows($result) == 0) {     authenticate_user();    }  } ?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.