如何在 php 中创建仪表来检查密码强度?
众所周知,我们可以调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
密码表的特点是它们需要动态工作。我能想到的使用 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.
jQuery 和 pwdMeter 包括:
触发对插件的调用的 jQuery:
此代码调用 .pwdMeter();文档就绪触发器上的功能。
HTML 代码:
它将显示输入密码的文本框,当您在密码框中输入内容时,它会在空白范围内显示您的强度。
jQuery and pwdMeter include:
jQuery to fire a call to plugin:
This code call .pwdMeter(); function on document ready trigger.
HTML Code:
It will show textbox to enter password and when you enter something in password box it shows you strength in empty span.