Description
The following code:
<?php
$date=date_create_from_format("M-Y","Feb-2024");
echo date_format($date,"Y/m/d");
Resulted in this output:
2024/03/01
But I expected this output instead:
2024/02/29
PHP Version
PHP 8.3.4
Operating System
Windows 11