Answers for "php create a date from string Y-m-d H:i:s"

PHP
1

create date from string php

$element = '15-Feb-2009';
$date = DateTime::createFromFormat('j-M-Y', $element);
Posted by: Guest on October-22-2020
0

change datetime format from Y-m-d h:i:s to d-m-Y in php

$old_date = date('l, F d y h:i:s');              // returns Saturday, January 30 10 02:06:34
$old_date_timestamp = strtotime($old_date);
$new_date = date('Y-m-d H:i:s', $old_date_timestamp);
Posted by: Guest on November-25-2020

Code answers related to "php create a date from string Y-m-d H:i:s"

Browse Popular Code Answers by Language