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

PHP
6

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

php grab month from date

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

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

Browse Popular Code Answers by Language