Answers for "php code to display the date and time"

PHP
0

php code to display current date and time in different formats

echo date('Y.m.d H:i:s');
Posted by: Guest on August-11-2020
0

displaying dates using php code

// Output — 11:03:37 AM
echo date('h:i:s A');
 
// Output — Thursday, 11:04:09 AM
echo date('l, h:i:s A');
 
// Output — 13 September 2018, 11:05:00 AM
echo date('d F Y, h:i:s A');
 
?>
Posted by: Guest on May-16-2021

Code answers related to "php code to display the date and time"

Browse Popular Code Answers by Language