分析Yii 2.0在Grid中時間格式化的方法

來源:互聯網
上載者:User
這篇文章主要跟大家分享了Yii 2.0在Grid中格式化時間的相關資料,文中給出了詳細的範例程式碼供大家參考學習,對大傢具有一定的參考價值,需要的朋友們下面來一起看看吧。

本文主要給大家介紹了關於Yii 2.0在Grid中格式化時間的相關內容,分享出來供大家參考學習,下面來看看詳細的介紹:

直接上代碼


<?= GridView::widget([  'dataProvider' => $dataProvider, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], 'id', 'username', 'email:email', 'created_at:date', // 這兩個需要顯示為 2016.04.10 'updated_at:date', // 使用 :date 來格式化時間 ['class' => 'yii\grid\ActionColumn'],],]); ?>

當你使用 :date 格式化時間時,你會發現顯示的時間是英文,沒關係,我們可以配置

在 main.php 裡,給 components 加上幾行


'components' => [  'formatter' => [   'dateFormat' => 'YYY.MM.dd',   'decimalSeparator' => ',',   'thousandSeparator' => ' ',   'currencyCode' => 'EUR',  ],

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.