問題:
在前台頁面展示的時候,使用者透過控制項選擇日期,產生格式如2016-11-01的形式展示,儲存到資料庫中為時間戳的int型別。需要進行對其轉換,如何轉換呢?
(推薦教學:yii框架)
解決方法:
在model類別中的rules方法中,新增規則即可。
具體程式碼如下:
public function rules() { return [ //使用filter来处理表单中时间的格式 ['create_time' , 'filter', 'filter' => function(){ return strtotime($this->create_time); }], ['update_time' , 'filter', 'filter' => function(){ return strtotime($this->update_time); }], ]; }
其中「create_time」和「update_time」為此實體類別中的兩個屬性,建立時間和修改時間,strtotime函數為時間戳記轉換函數。
更多程式相關內容,請關注php中文網程式入門欄位!
以上是yii框架中時間格式怎麼轉換的詳細內容。更多資訊請關注PHP中文網其他相關文章!