-1
我想在將密碼插入數據庫之前更改要加密的密碼,但它不起作用。它說密碼很長。用Yii加密的密碼問題
public function actionCreate() {
$model = new Users;
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if (isset($_POST['Users'])) {
$model->attributes = $_POST['Users'];
$password = $_POST['Users']['password'];
$model->password = md5($password);
if ($model->save())
$this->redirect(array('view', 'id' => $model->id));
}
$this->render('create', array(
'model' => $model,
));
}
增加tabel中的密碼字段的大小以及用戶模型中的規則的大小也會增加該大小,以使您的模型驗證結果爲true。 – 2014-09-26 10:45:09
您在模型類規則中使用的密碼長度是多少? – Athipatla 2014-09-26 11:14:28
你的回答是正確的milz謝謝男人:) – 2014-09-26 11:36:19