php get day from date variable code example
Example 1: get day from date php
// Prints the day
echo date("l") . "<br>";
Example 2: name of today php
$datetime = DateTime::createFromFormat('YmdHi', '201308131830');
echo $datetime->format('D');
// or
$date = new \DateTime();
echo $date->format("D");