I want to convert the string to date time, but it's not working
<?php
$date = date_create_from_format('d_m_Y_H_i_s', '29_11_2016_5_0_15');
echo date_format($date, 'Y-m-d');
return
Warning: date_format() expects parameter 1 to be DateTimeInterface, boolean given ...
what is the solution ??
date_create_from_format()
returns false when it fails, or a new DateTime instance when it succeeds.Yours is failing because minutes are two-digits, not single-digits. Using
29_11_2016_5_0_15
as a timestring would yield the following errorSo simply, you'll need to use
29_11_2016_5_00_15
as the timestring instead, like thisThe output from the above snippet would be
2016-11-29
, live demo: https://3v4l.org/6om9gUsing
date_get_last_errors()
you'll be able to get the errors given in your DateTime instance.