DavidHirtz/yii2-datetime-behavior

将数据库日期列初始化为DateTime PHP类。

v1.1.6 2022-08-07 09:03 UTC

This package is auto-updated.

Last update: 2024-09-07 13:11:27 UTC


README

将数据库日期列初始化为DateTime PHP类。

安装

安装此扩展的首选方式是通过 composer

运行以下命令之一

php composer.phar require --prefer-dist davidhirtz/yii2-datetime-behavior "*"

"davidhirtz/yii2-datetime-behavior": "*"

将以下内容添加到您的 composer.json 文件的 require 部分中。

使用方法

扩展安装后,只需将其添加到您的 ActiveRecord 行为中即可在代码中使用。如果您未设置所有 "date" 和 "datetime" 属性,则所有这些列将自动选择。

use davidhirtz\yii\datetime\DateTimeBehavior;
public function behaviors()
{
	return [
		[
			'class'=>DateTimeBehavior::class,
			//'attributes'=>['custom_attribute', 'another_attribute'],
		],
	];
}