使用 PHP 而不是 shell 创建新的 HTTP 身份验证凭据

发布于 2024-12-17 20:06:53 字数 188 浏览 0 评论 0原文

我知道可以通过此 shell 脚本添加新的 HTTP 身份验证凭据:

htpasswd -c .htpasswd testing

Is it possible to get the same with a PHP script?我知道我可以使用常规的 PHP 身份验证系统,但这不是我想要的。

I know that it's possible to add new HTTP auth credentials through this shell script:

htpasswd -c .htpasswd testing

Is it possible to achieve the same with a PHP script? I know I could use a regular PHP auth system, but that's not what I'm looking for.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟酒忠诚 2024-12-24 20:06:53

您可以使用 systemexec 添加您的用户。

我创建了一个可能适合您的代码片段:

<?php
define('HTPASSFILEPATH', '.htpasswd');

function addUser($pUser, $pPass)
{
    exec("htpasswd -cb " . HTPASSFILEPATH . " ${pUser} ${pPass}");
}
?>

请记住,htpasswd 工具应该位于您的PATH

You can execute this command with system or exec to add your users.

I've created a code snippet that might work for you:

<?php
define('HTPASSFILEPATH', '.htpasswd');

function addUser($pUser, $pPass)
{
    exec("htpasswd -cb " . HTPASSFILEPATH . " ${pUser} ${pPass}");
}
?>

And remember, the htpasswd tool should be in your PATH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文