LoginSignup
1
1

More than 3 years have passed since last update.

codeigniter3 データベースからYYYY/MM/DD形式で日付を取得する

Last updated at Posted at 2020-03-03

codeigniter3でcreate_dateとupdate_dateをYYYY/MM/DDの形式で取得する

qiita.rb
$this->db->select(
'*,
DATE_FORMAT(create_date,"%Y/%m/%d") AS create_date,
DATE_FORMAT(update_date,"%Y/%m/%d") AS update_date,'
);
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1