Answers for "php month name function"

PHP
1

php grab month from date

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

php convert month number to name

$monthNum  = 3;
$dateObj   = DateTime::createFromFormat('!m', $monthNum);
$monthName = $dateObj->format('F'); // March
Posted by: Guest on July-06-2020

Browse Popular Code Answers by Language