-
Couldn't load subscription status.
- Fork 8k
Closed as not planned
Description
Wron output by DateTime Format
The following code:
$monthNum = 2; // 1 January, 3 also March but that is right
$dateObj = DateTime::createFromFormat('n', $monthNum);
echo $dateObj->format('F');
<?phpResulted in this output:
March
But I expected this output instead:
February
PHP Version
8.2 also older
Operating System
No response