Answers for "get time php date"

PHP
10

date now php

date('Y-m-d H:i:s')
Posted by: Guest on July-11-2020
2

php current time

echo date('Y-m-d H:i:s');

//Output something like this:
//2021-07-30 10:07:45
Posted by: Guest on July-30-2021
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
2

php get current time and date

date("Y-n-j G:i:s");
//-->2020-10-29 23:27:15
Posted by: Guest on October-29-2020
1

display time php

date(format,timestamp) 
//example
date("Y.m.d") //default timestamp is current time.
Posted by: Guest on January-18-2021

Browse Popular Code Answers by Language