date to day php code example
Example 1: php code to display current date and time in different formats
echo date('Y.m.d H:i:s');
Example 2: get day from date php
// Prints the day
echo date("l") . "<br>";
echo date('Y.m.d H:i:s');
// Prints the day
echo date("l") . "<br>";