Converting date From one format to another

前端 未结 4 1390
暗喜
暗喜 2021-01-15 05:21

iam having the date format stored in database as \"20100723\"(YYYYMMDD) and how do i convert it into \"23-JUL-2010\"

4条回答
  •  滥情空心
    2021-01-15 05:25

    strtoupper(date_create("20100723")->format("d-M-Y"))
    

    See the DateTime class, in particular the DateTime::format method. date_create is an alias to the constructor of DateTime.

提交回复
热议问题