Answers for "date time with miliseconds php"

PHP
7

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
1

show date time with milliseconds php

$now = DateTime::createFromFormat('U.u', microtime(true));
echo $now->format("m-d-Y H:i:s.u");
Posted by: Guest on June-04-2020

Browse Popular Code Answers by Language