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


PHP BaseModel::u方法代碼示例

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


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

示例1: u

 /**
  * 更新
  */
 public function u($rq = NULL)
 {
     $this->guarded = arr_except_vals($this->guarded, ['password']);
     if (!$rq) {
         $rq = rq();
     }
     return parent::u($rq);
 }
開發者ID:newset,項目名稱:robot,代碼行數:11,代碼來源:IEmployee.php

示例2: u

 /**
  * 更新
  */
 public function u($rq = null)
 {
     $this->guarded = arr_except_vals($this->guarded, ['password']);
     if (!$rq) {
         $rq = rq();
     }
     if (isset($rq['password'])) {
         $rq['password'] = hash_password($rq['password']);
     }
     return parent::u($rq);
 }
開發者ID:hellopsm,項目名稱:robot,代碼行數:14,代碼來源:IEmployee.php

示例3: u

 public function u($rq = null)
 {
     // 驗證
     if (!rq('id')) {
         return ee(1);
     }
     $rules = $this->createRule;
     $rules['name'] = $rules['name'] . ',' . rq('id');
     $validator = Validator::make($rq, $rules, $this->messages);
     if (!$validator->passes()) {
         return ee(2, $validator->errors());
     }
     return parent::u($rq);
 }
開發者ID:newset,項目名稱:robot,代碼行數:14,代碼來源:IHospital.php

示例4: u

 /**
  * 更新
  */
 public function u($rq = NULL)
 {
     // 代理隻能修改自己
     if (he_is('agency')) {
         if (rq('id') != uid()) {
             abort(403);
         }
     }
     $this->guarded = arr_except_vals($this->guarded, ['password']);
     if (!$rq) {
         $rq = rq();
     }
     if (isset($rq['ended_at']) && $rq['ended_at'] == 'Invalid date') {
         unset($rq['ended_at']);
     }
     if (isset($rq['started_at']) && $rq['started_at'] == 'Invalid date') {
         unset($rq['started_at']);
     }
     return parent::u($rq);
 }
開發者ID:Aaronqcd,項目名稱:robot,代碼行數:23,代碼來源:IAgency.php


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