本文整理匯總了PHP中app\models\Student::validate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Student::validate方法的具體用法?PHP Student::validate怎麽用?PHP Student::validate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\models\Student
的用法示例。
在下文中一共展示了Student::validate方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: actionCreate
/**
* Creates a new Student model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$student = new Student();
$user = new User();
$person = new Person();
if (Yii::$app->request->post()) {
$params = Yii::$app->request->post();
$person->load($params);
$user->load($params);
$user->password_hash = Yii::$app->getSecurity()->generatePasswordHash($params['User']['password_hash']);
$student->load($params);
if ($person->validate() && $user->validate() && $student->validate()) {
$person->save(false);
$user->person_id = $person->id;
$user->register();
$student->user_id = $user->id;
$student->save();
Yii::$app->session->setFlash('success', 'Se envío un correo de confirmación. Por favor verifique su correo electrónico');
return $this->refresh();
} else {
Yii::$app->session->setFlash('danger', 'Ocurrió ff un error al guardar. Vuelve a intentar');
return $this->refresh();
}
} else {
return $this->render('create', ['student' => $student, 'user' => $user, 'person' => $person]);
}
}
示例2: actionCreate
public function actionCreate()
{
$model = new Student();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
$model->birthday = date('Y-m-d', strtotime($model->birthday));
if ($model->save()) {
return $this->redirect(Url::to(['/student/view', 'id' => $model->id]));
}
}
return $this->render('create', ['model' => $model]);
}