### Wron output by DateTime Format The following code: ```php $monthNum = 2; // 1 January, 3 also March but that is right $dateObj = DateTime::createFromFormat('n', $monthNum); echo $dateObj->format('F'); <?php ``` Resulted in this output: ``` March ``` But I expected this output instead: ``` February ``` ### PHP Version 8.2 also older ### Operating System _No response_