當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Student::validate方法代碼示例

本文整理匯總了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]);
     }
 }
開發者ID:RomarioLopezC,項目名稱:RobotSS,代碼行數:32,代碼來源:DefaultController.php

示例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]);
 }
開發者ID:ustkirill,項目名稱:testwork,代碼行數:11,代碼來源:StudentController.php


注:本文中的app\models\Student::validate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。