0
Q:

php get current time and date

$today = date("F j, Y, g:i a");   // October 30, 2019, 10:42 pm
$today = date("D M j G:i:s T Y"); // Wed Oct 30 22:42:18 UTC 2019
$today = date("Y-m-d H:i:s");     // 2019-10-30 22:42:18(MySQL DATETIME format)
7

 <?php
echo "Today is " . date("Y/m/d") . "<br>";
echo "Today is " . date("Y.m.d") . "<br>";
echo "Today is " . date("Y-m-d") . "<br>";

 echo "Today is " . date("l");
?> 
7
date("Y-n-j G:i:s");
//-->2020-10-29 23:27:15
1
check here link:   http://www.eltcalendar.com/stuff/datemysqlphp.html
0

New to Communities?

Join the community