如何在 php 中创建仪表来检查密码强度?

发布于 2024-12-11 03:59:38 字数 156 浏览 0 评论 0原文

众所周知,我们可以调用 Javascript 的任何函数 控制像 onblur() 或 onclick() 等事件。

但是,,我不想使用 javascript...是否有另一种方法来调用 php 函数

实际上我想检查密码强度,无论它是弱、平均还是强..使用 PHP。

As we know that we can call any function of Javascript
to control's event like onblur() or onclick() etc.

but ,, i don't want to use javascript...is there another way to call php function

actually i want to check password strength whater it is weak, average or strong..using PHP.

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

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

发布评论

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

评论(2

恬淡成诗 2024-12-18 03:59:38

密码表的特点是它们需要动态工作。我能想到的使用 PHP 函数动态确定安全密码强度的唯一方法是通过带有 SSL (HTTPS) 的 AJAX POST 发送请求。

查看此相关问题

The thing about password meters is that they need to work dynamically. The only way I can think of you using a PHP function to dynamically determine the strength for a password that is SAFE, is to send a request through an AJAX POST with SSL (HTTPS).

Check out this related question.

肤浅与狂妄 2024-12-18 03:59:38

jQuery 和 pwdMeter 包括:

<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="jquery.pwdMeter.js"></script>

触发对插件的调用的 jQuery:

<script type="text/javascript">
$(document).ready(function(){

        $("#password").pwdMeter();

    });
</script>

此代码调用 .pwdMeter();文档就绪触发器上的功能。

HTML 代码:

<div id="grid">
  <input type="password" id="password">
  <span id="pwdMeter" class="neutral"></span>
</div>

它将显示输入密码的文本框,当您在密码框中输入内容时,它会在空白范围内显示您的强度。

<style>
.veryweak{
color:#B40404;
}

.weak{
color:#DF7401;
}

.medium{
color:#FFFF00;
}

.strong{
color:#9AFE2E;
}

.verystrong{
color:#0B610B;
}
</style>

jQuery and pwdMeter include:

<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="jquery.pwdMeter.js"></script>

jQuery to fire a call to plugin:

<script type="text/javascript">
$(document).ready(function(){

        $("#password").pwdMeter();

    });
</script>

This code call .pwdMeter(); function on document ready trigger.

HTML Code:

<div id="grid">
  <input type="password" id="password">
  <span id="pwdMeter" class="neutral"></span>
</div>

It will show textbox to enter password and when you enter something in password box it shows you strength in empty span.

<style>
.veryweak{
color:#B40404;
}

.weak{
color:#DF7401;
}

.medium{
color:#FFFF00;
}

.strong{
color:#9AFE2E;
}

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