Answers for "get day month and day from date php"

PHP
1

php days in month

// For given month
echo cal_days_in_month(CAL_GREGORIAN, 1, 2021);
// For current month
echo date('t');
Posted by: Guest on January-27-2021
2

get day from date php

// Prints the day
echo date("l") . "<br>";
Posted by: Guest on July-04-2020

Code answers related to "get day month and day from date php"

Browse Popular Code Answers by Language