When I run this script:
$date = date_create_from_format('d/m/YH:m:s', '08/01/2017 15:00:00'); echo date_format($date, 'Ymd H:m:s'); I get 2016-12-08 15:12:00.
Why not 2017-01-08 15:00:00 ??
What am I doing wrong?
When I run this script:
$date = date_create_from_format('d/m/YH:m:s', '08/01/2017 15:00:00'); echo date_format($date, 'Ymd H:m:s'); I get 2016-12-08 15:12:00.
Why not 2017-01-08 15:00:00 ??
What am I doing wrong?
Source: https://ru.stackoverflow.com/questions/607661/
All Articles