full day in PHP date code example
Example 1: php full day name
date("l",time()) // LOWER CASE L
Example 2: get day from date php
// Prints the day
echo date("l") . "<br>";
date("l",time()) // LOWER CASE L
// Prints the day
echo date("l") . "<br>";