Answers for "how to store current time in variable in php"

PHP
22

php get current date and time

$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)
Posted by: Guest on October-30-2019
1

php current time

# Current Time
date_default_timezone_set("America/New_York");
echo "The time is " . date("h:i:sa");
Posted by: Guest on March-03-2021

Code answers related to "how to store current time in variable in php"

Browse Popular Code Answers by Language