我有一個timestamp
列,我只是想格式化它。在GridView中,我有以下:如何在GridView中獲取值?
[
'attribute' => 'timestamp',
'filter' => false,
'value' => function($model, $key, $index, $column) {
// How to get current timestamp value here???
}
],
文件說,$model
和$column
都返回的對象,但我還是沒能找到提供列的數據的方法。我將如何去做這件事?
很高興提供幫助。更新了答案,並提供了關於Yii2中用於格式化日期的內置工具的一些詳細信息。 – arogachev