Answers for "get day of the month php"

PHP
9

php get day from date

$timestamp = strtotime('2009-10-22');

$day = date('D', $timestamp);
var_dump($day);
Posted by: Guest on June-10-2020
5

php grab month from date

$month = date("m",strtotime($mydate));
Posted by: Guest on June-11-2020

Code answers related to "get day of the month php"

Browse Popular Code Answers by Language