Answers for "php convert datetime to new format"

PHP
10

php convert string to date

$time = strtotime('10/16/2003');

$newformat = date('Y-m-d',$time);

echo $newformat;
// 2003-10-16
Posted by: Guest on February-28-2020
0

php date from format

<?php
$date = DateTime::createFromFormat('j-M-Y', '15-Feb-2009');
echo $date->format('Y-m-d');
?>
Posted by: Guest on October-18-2021

Code answers related to "php convert datetime to new format"

Browse Popular Code Answers by Language