php date get full day name code example
Example 1: php get day from date
$timestamp = strtotime('2009-10-22');
$day = date('D', $timestamp);
var_dump($day);
Example 2: php full day name
date("l",time()) // LOWER CASE L
$timestamp = strtotime('2009-10-22');
$day = date('D', $timestamp);
var_dump($day);
date("l",time()) // LOWER CASE L