Answers for "how to get current time and date 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
0

show date php

check here link:   http://www.eltcalendar.com/stuff/datemysqlphp.html
Posted by: Guest on August-29-2020
0

get current date from year input php

$date_input = '2003';
$date_output= date( "Y-m-d", mktime( 0, 0, 0, 1, 1, $date_input ));
//date_output = 2003-01-01
Posted by: Guest on July-17-2020

Code answers related to "how to get current time and date in php"

Browse Popular Code Answers by Language