PHP date showing '1970-01-01 ' after conversion

前端 未结 8 598
醉话见心
醉话见心 2020-12-04 16:44

I have a form in which date format is dd/mm/yyyy . For searching database , I hanverted the date format to yyyy-mm-dd . But when I echo

8条回答
  •  Happy的楠姐
    2020-12-04 17:35

    Use below code for php 5.3+:

    $date = new DateTime('1900-02-15');
    echo $date->format('Y-m-d');
    

    Use below code for php 5.2:

    $date = new DateTime('1900-02-15');
    echo $date->format('Y-m-d');
    

提交回复
热议问题