day of week in php code example
Example 1: get day from date php
// Prints the day
echo date("l") . "<br>";
Example 2: long day in php
$mydate = '2016-01-01';
echo date('l, F jS, Y', strtotime($mydate));
# Friday, January 1st, 2016
// Prints the day
echo date("l") . "<br>";
$mydate = '2016-01-01';
echo date('l, F jS, Y', strtotime($mydate));
# Friday, January 1st, 2016