本文整理匯總了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);
}
示例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);
}
示例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);
}
示例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);
}