我想在将新记录插入数据库时将当前系统时间添加到数据库中,如“time_created”列中所示.
PHP的time()函数在yii2中没有支持.我想要yii2特定的时间功能,这将帮助我保存当前的时间戳.有谁知道????
Yii 2对此有特殊的行为.只需将其附加到模型上即可.
将此项添加到您的模型中的behavior()方法:
原文链接:https://www.f2er.com/php/135794.html将此项添加到您的模型中的behavior()方法:
use yii\behaviors\TimestampBehavior; use yii\db\Expression; public function behaviors() { return [ // Other behaviors [ 'class' => TimestampBehavior::className(),'createdAtAttribute' => 'time_created','updatedAtAttribute' => false,'value' => new Expression('NOW()'),],]; }