date get day number php code example
Example 1: php get day from date
$timestamp = strtotime('2009-10-22');
$day = date('D', $timestamp);
var_dump($day);
Example 2: get day from date php
// Prints the day
echo date("l") . "<br>";
$timestamp = strtotime('2009-10-22');
$day = date('D', $timestamp);
var_dump($day);
// Prints the day
echo date("l") . "<br>";