PHP 生成 .htpasswd 文件的用户名和密码
程序员文章站
2022-05-12 15:05:57
...
.htpasswd 主要是 apache 使用的基于文件的用户名和密码的存储
<?php // - - - - - - - - - - - - - - - - - - - // Author: Christopher Hair // Website: www.chrishair.co.uk // - - - - - - - - - - - - - - - - - - - if (isset($_POST['submit'])){ $error = ''; $username = trim(stripslashes($_POST['username'])); $password = trim(stripslashes($_POST['password'])); if ($username == '' || preg_match('/\s/m', $username)) { $error .= "<p><strong>Invalid Username.</strong></p>\n"; } if ($password == '' || preg_match('/\s/m', $password)) { $error .= "<p><strong>Invalid Password.</strong></p>\n"; } if ($error == '') { echo "<p>Success</p>\n"; echo "<h1>" . htmlspecialchars($username) . ":" . crypt($password) . "</h1>\n"; } else { echo $error; } } ?>
以上就是PHP 生成 .htpasswd 文件的用户名和密码的内容,更多相关内容请关注PHP中文网(www.php.cn)!
上一篇: MySQL数据库的漏洞相当于其它数据库1/4_MySQL
下一篇: kettle api 执行转换