翼度科技»论坛 编程开发 PHP 查看内容

PHP如何实现给页面设置独立访问密码

8

主题

8

帖子

24

积分

新手上路

Rank: 1

积分
24
PHP网页如果需要查看信息必须输入密码,验证后才可显示出内容的代码如何实现?
对某些php页面设置单独的访问密码,如果密码不正确则无法查看内容,相当于对页面进行了一个加密。

效果截图



使用方法和步骤

新建一个MkEncrypt.php文件在根目录下或者同级目录下。
MkEncrypt.php里面添加以下代码:
  1. <?php
  2. if(!defined('MK_ENCRYPT_SALT'))
  3. define('MK_ENCRYPT_SALT', 'Kgs$JC!V');
  4. /**
  5. * 设置访问密码  
  6. * @param $password 访问密码
  7. * @param $pageid 页面唯一 ID 值,用于区分同一网站的不同加密页面
  8. */
  9. function MkEncrypt($password, $pageid = 'default') {
  10. $pageid = md5($pageid);
  11. $md5pw = md5(md5($password).MK_ENCRYPT_SALT);
  12. $postpwd = isset($_POST['pagepwd']) ? addslashes(trim($_POST['pagepwd'])) : '';
  13. $cookiepwd = isset($_COOKIE['mk_encrypt_'.$pageid]) ? addslashes(trim($_COOKIE['mk_encrypt_'.$pageid])) : '';
  14. if($cookiepwd == $md5pw) return; // Cookie密码验证正确
  15. if($postpwd == $password) { // 提交的密码正确
  16. setcookie('mk_encrypt_' . $pageid, $md5pw, time() + 3600000, '/');
  17. return;
  18. }
  19. ?>
  20. <html>
  21. <head>
  22. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  23. <meta charset="UTF-8">
  24. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  25. <meta name="renderer" content="webkit">
  26. <meta name="author" content="mengkun">
  27. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  28. <title>该页面已被加密</title>
  29. <style type="text/css">
  30. *{font-family:"Microsoft Yahei",微软雅黑,"Helvetica Neue",Helvetica,"Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;box-sizing:border-box;margin:0px;padding:0px;font-size:14px;-webkit-transition:.2s;-moz-transition:.2s;-ms-transition:.2s;-o-transition:.2s;transition:.2s}
  31. html,body{width:100%;height:100%}
  32. body{background-color:#F4F6F9;color:#768093}
  33. input,button{font-size:1em;border-radius:3px;-webkit-appearance:none}
  34. input{width:100%;padding:5px;box-sizing:border-box;border:1px solid #e5e9ef;background-color:#f4f5f7;resize:vertical}
  35. input:focus{background-color:#fff;outline:none}
  36. button{border:0;background:#6abd09;color:#fff;cursor:pointer;opacity:1;user-select:none}
  37. button:hover,button:focus{opacity:.9}
  38. button:active{opacity:1}
  39. .main{width:100%;max-width:500px;height:300px;padding:30px;background-color:#fff;border-radius:2px;box-shadow:0 10px 60px 0 rgba(29,29,31,0.09);transition:all .12s ease-out;position:absolute;left:0;top:0;bottom:0;right:0;margin:auto;text-align:center}
  40. .alert{width:80px}
  41. .mk-side-form{margin-bottom:28px}
  42. .mk-side-form input{float:left;padding:2px 10px;width:77%;height:37px;border:1px solid #ebebeb;border-right-color:transparent;border-radius:2px 0 0 2px;line-height:37px}
  43. .mk-side-form button{position:relative;overflow:visible;width:23%;height:37px;border-radius:0 2px 2px 0;text-transform:uppercase}
  44. .pw-tip{font-weight:normal;font-size:26px;text-align:center;margin:25px auto}
  45. #pw-error {color: red;margin-top: 15px;margin-bottom: -20px;}
  46. .return-home{text-decoration:none;color:#b1b1b1;font-size:16px}
  47. .return-home:hover{color:#1E9FFF;letter-spacing:5px}
  48. </style>
  49. </head>
  50. <body>
  51. <div class="main">
  52. <svg class="alert" viewBox="0 0 1084 1024" xmlns="http://www.w3.org/2000/svg" width="80" height="80">
  53. <defs><style/></defs>
  54. <path d="M1060.744 895.036L590.547 80.656a55.959 55.959 0 0 0-96.919 0L22.588 896.662a55.959 55.959 0 0 0 48.43 83.907h942.14a55.959 55.959 0 0 0 47.525-85.534zm-470.619-85.172a48.008 48.008 0 1 1-96.015 0v-1.567a48.008 48.008 0 1 1 96.015 0v1.567zm0-175.345a48.008 48.008 0 1 1-96.015 0V379.362a48.008 48.008 0 1 1 96.015 0v255.157z" fill="#FF9800"/>
  55. </svg>
  56. <form action="" method="post" class="mk-side-form">
  57. <h2 class="pw-tip">该页面已被加密</h2>
  58. <input type="password" name="pagepwd" placeholder="请输入访问密码查看" required><button type="submit">访问</button>
  59. <?php if($postpwd): ?>
  60. <p id="pw-error">密码不对哦~</p>
  61. <script>setTimeout(function() {document.getElementById("pw-error").style.display = "none"}, 2000);</script>
  62. <?php endif; ?>
  63. </form>
  64. <a href="/" rel="external nofollow"  class="return-home" title="点击回到网站首页">- 返回首页 - </a>
  65. </div>
  66. </body>
  67. </html>
  68. <?php
  69. exit();
  70. }
复制代码
把下面的代码放在你需要加密的页进行调用
  1. <?php
  2.     require_once('MkEncrypt.php');
  3.     MkEncrypt('123456');
  4.     ?>
复制代码
MkEncrypt(‘123456’);括号里面123456修改成你需要设置的密码。
密码正确才能进去页面,进入后会存下cookies值,下一次登录的时候则不需要再次输入了,只要是PHP程序都是支持这段代码的。

方法补充

除了上文的方法,小编还为大家整理了一些PHP为页面加密的方法,希望对大家有所帮助
对某些php页面设置单独的访问密码,如果密码不正确则无法查看内容,相当于对页面进行了一个加密。只需要将以下php文件包含在你需要设置独立访问密码的最前面就可以了。
recheck.php
  1. <html>
  2.    <head>
  3.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4.   <title>title</title>
  5.   <style>
  6. #divcss{margin:300 auto;width:400px;height:40px;}   
  7. #footer {
  8.             height: 40px;
  9.             line-height: 40px;
  10.             position: fixed;
  11.             bottom: 0;
  12.             width: 100%;
  13.             text-align: center;
  14.             background: #373d41;
  15.             color: #ffffff;
  16.             font-family: Arial;
  17.             font-size: 16px;
  18.       
  19.             letter-spacing: 1px;
  20.         }
  21. a {text-decoration: none}
  22.   </style>
  23. </head>
  24. <body>
  25. <?php
  26. //所有需要输出二次密码打开的页面,只需要将本php文件进行包含即可
  27. $url = &#39;http://&#39;.$_SERVER[&#39;SERVER_NAME&#39;].&#39;:&#39;.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
  28. //echo $url;
  29. if (!session_id()){session_start();};
  30. if(isset($_GET[&#39;close&#39;])){  
  31. $url = $_GET[&#39;url&#39;];
  32. unset($_SESSION[&#39;recheck&#39;]);
  33. }
  34. if(isset($_POST[&#39;password&#39;]) && $_POST[&#39;password&#39;] == &#39;123456&#39;){
  35.     $_SESSION[&#39;recheck&#39;] = 1;
  36.     header(&#39;location:&#39;.$url);
  37. }
  38. if(!isset($_SESSION[&#39;recheck&#39;])){
  39.     exit(&#39;<div id="divcss">
  40.         <form method="post">
  41.             请输入独立访问密码:<input type="password" name="password" />
  42.             <input type="submit" value="确定" />(密码:123456)
  43.         </form>
  44.     </div>
  45.     &#39;);
  46. }
  47. ?>
  48. <div id="footer"><a href="?close=yes&url=<?php echo $url?>" rel="external nofollow" ><font color="#FFFFFF">安全退出本页面</font></a></div>
  49. </body>
  50. </html>
复制代码
在需要进行设置独立密码访问的页面包含该php文件即可,这样就能保证只有输入正确的访问密码后才可以访问指定页面了;也可以稍作修改封装成函数直接插入到需要设置访问密码的页面顶部,这样就可以每个页面设置不一样的访问密码了!
  1. <?php include(‘recheck.php'); ?>
复制代码
到此这篇关于PHP如何实现给页面设置独立访问密码的文章就介绍到这了,更多相关PHP页面设置访问密码内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/program/318451k8o.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具