我正在寻找 Yii2 的密码强度计。我为 Yii1 找到了这篇文章。我看到protected
那里提到的目录。我找不到这个文件夹。它在基本应用程序模板或高级应用程序模板中可用吗?
问问题
484 次
2 回答
4
受保护的 forder 用于 Yii1
Yii2 没有这个文件夹
您可以在模型中使用此示例代码
public function rules()
{
return [
['password', 'checkPassword'],
// other rules
];
}
public function checkPassword($attribute, $params)
{
// no real check at the moment to be sure that the error is triggered
if(password != OK )
$this->addError($attribute, 'Your password not valid');
}
于 2015-09-21T11:34:19.587 回答