Answers for "month name to month n number in php"

PHP
1

+1 month php

$time = strtotime("2010.12.11");
$final = date("Y-m-d", strtotime("+1 month", $time));
Posted by: Guest on August-07-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

Code answers related to "month name to month n number in php"

Browse Popular Code Answers by Language