Answers for "transform a string in date php"

PHP
11

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

Code answers related to "transform a string in date php"

Browse Popular Code Answers by Language