Answers for "php get day of the month"

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
1

datetime get month php

$dateTime = new DateTime();
$month = $dateTime->format('m');
Posted by: Guest on December-15-2020

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

Browse Popular Code Answers by Language