Obtenez le jour de la date PHP
// Prints the day
echo date("l") . "<br>";
Ankur
// Prints the day
echo date("l") . "<br>";
date('w'); //gets day of week as number(0=sunday,1=monday...,6=sat)
//note:returns 0 through 6 but as string so to check if monday do this:
if(date('w') == 1){
echo "its monday baby";
}
check here link: http://www.eltcalendar.com/stuff/datemysqlphp.html
Date Time Format: https://www.php.net/manual/en/datetime.format.php