1. 程式人生 > >andFilterWhere()函式找不出某個int型別欄位為0的資料

andFilterWhere()函式找不出某個int型別欄位為0的資料

   =$client;
$this->model->create_user    =$create_user;
$this->model->create_date    =$create_date;
$this->model->save();
$customer_id =$this->model->attributes['id']; //獲取save插入後的id



上面是半年前寫的,有不足,下面重新寫著說明一下。

$customer =Customer::model();
$post_data = $_POST['client'];
$
customer->attributes    =$
post_data;
$
customer->create_user    =Yii::app()->user->getId();
$
customer->create_time    =time();
$
customer->save();
$customer_id = $customer->id;  //這樣獲取save插入後的id最方便
$customer_id =$
customer->attributes['id']; //這樣也可以 獲取save插入後的id
$customer_info = $

yii model->save() 返回false

$model->save()執行時,如何不要驗證?

public boolean save(boolean $runValidation=true, array $attributes=NULL)
$model->save(false);   //不驗證

1.按鈕的id為btnzhuce
==》 控制按鈕為禁用:
$("#btnzhuce").attr({"disabled":"disabled"});
==》控制按鈕為可用
 $("#btnzhuce").removeAttr("disabled");//將按鈕可用


http://blog.csdn.net/dc769319/article/details/53022570    不修改原始檔  直接 重新整理驗證碼

http://www.yiichina.com/tutorial/410

http://www.360us.net/article/17.html    驗證碼的使用

https://segmentfault.com/a/1190000005910783  重寫源生驗證碼

先設定 $model->allow_comment = 1
<?= $form->field($model, 'allow_comment')->checkbox([ 'label' => '允許評論']) ?>
這樣這預設選中了