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


PHP Operation::getErrors方法代碼示例

本文整理匯總了PHP中Operation::getErrors方法的典型用法代碼示例。如果您正苦於以下問題:PHP Operation::getErrors方法的具體用法?PHP Operation::getErrors怎麽用?PHP Operation::getErrors使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Operation的用法示例。


在下文中一共展示了Operation::getErrors方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: save

 public function save()
 {
     try {
         if ($this->id) {
             $model = Operation::model()->findByPk($this->id);
             if (empty($model)) {
                 throw new CDbException('參數出錯', 1, []);
             }
         } else {
             $model = new Operation();
         }
         $model->attributes = ['name' => $this->name, 'description' => $this->description, 'module' => $this->module, 'controller' => $this->controller, 'action' => $this->action, 'status' => $this->status, 'sort' => $this->sort];
         if ($model->save() === false) {
             throw new CDbException('更新用戶出錯', 2, $model->getErrors());
         }
     } catch (CDbException $e) {
         $this->addErrors($e->errorInfo);
         return false;
     }
     return true;
 }
開發者ID:syxoasis,項目名稱:wakfu-sae,代碼行數:21,代碼來源:OperationForm.php

示例2: actionOperations

 /**
  * 匯入術式
  */
 public function actionOperations()
 {
     $this->currentActive = '術式';
     $excel = new ExcelUploadForm();
     $rows = array();
     $errors = array();
     if (isset($_POST['ExcelUploadForm'])) {
         $excel->attributes = $_POST['ExcelUploadForm'];
         $excel->file = CUploadedFile::getInstance($excel, 'file');
         $transaction = Yii::app()->db->beginTransaction();
         try {
             if ($excel->validate()) {
                 $rows = $excel->getContents();
                 foreach ($rows as $i => $row) {
                     if ($i != ExcelUploadForm::HEADER) {
                         $operation = new Operation();
                         $operation->name = $row[1];
                         if (!$operation->save()) {
                             $errorData = array('第' . ($i + 1) . '筆,' . $row[2] => $operation->getErrors());
                             $errors[] = $errorData;
                         }
                     }
                 }
                 $transaction->commit();
             } else {
                 $errors[] = array('Excel' => $excel->getErrors());
             }
         } catch (Exception $e) {
             $transaction->rollBack();
             $errors = $e->getMessage();
         }
         $this->_setFlashMessage($errors);
         $this->redirect($this->createUrl("/excel/import/{$this->action->id}"));
     }
     $this->render('upload', array('excel' => $excel));
 }
開發者ID:luckily,項目名稱:casehistory,代碼行數:39,代碼來源:ImportController.php


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