php get weekday code example
Example 1: php check weekday of date
$dayofweek = date('w', strtotime($date));
$result = date('Y-m-d', strtotime(($day - $dayofweek).' day', strtotime($date)));
Example 2: get day from date php
echo date("l") . "<br>";
Example 3: date in php
$dateTime = new \DateTime();
$dateTime->format('Y-m-d H:i:s');
Example 4: name of today php
$datetime = DateTime::createFromFormat('YmdHi', '201308131830');
echo $datetime->format('D');
$date = new \DateTime();
echo $date->format("D");