程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> yii實現model添加默認值的方法(2種方法),yiimodel

yii實現model添加默認值的方法(2種方法),yiimodel

編輯:關於PHP編程

yii實現model添加默認值的方法(2種方法),yiimodel


本文實例講述了yii實現model添加默認值的方法。分享給大家供大家參考,具體如下:

yii model 繼承自CActiveRecord

有些字段可能不會出現在表單中,而需要在程序中加入。如訂單編號,時間戳,操作的user_id等等。

以下二種方法:

1、在rules()方法中設定:

public function rules()
{
  // NOTE: you should only define rules for those attributes that
  // will receive user inputs.
  return array(
    array('start, end', 'required'),
    array('user_id', 'numerical', 'integerOnly'=>true),
    array('timestamp','default','value'=>date('Y-m-d H:i:s')),
    // The following rule is used by search().
    // Please remove those attributes that should not be searched.
    array('id, start, end, user_id, timestamp', 'safe', 'on'=>'search'),
  );
}

2、在beforeSave()方法中設定:

function beforeSave()
{
  $this->user_id = Yii::app()->user->id;
  return true;
}

需要注意的是,beforeSave()方法需要return true,否則不會保存。

希望本文所述對大家基於Yii框架的PHP程序設計有所幫助。

您可能感興趣的文章:

  • Yii基於數組和對象的Model查詢技巧實例詳解
  • Yii中Model(模型)的創建及使用方法
  • PHP YII框架開發小技巧之模型(models)中rules自定義驗證規則
  • Yii不依賴Model的表單生成器用法實例

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved