$expectedDate = strtotime($assignList[‘ExpectedDate’]);
$displayExpectedDate = date("F Y", $expectedDate);
Ensure that the strtotime() function is being used. Or unexpected result may happen.
$expectedDate = strtotime($assignList[‘ExpectedDate’]);
$displayExpectedDate = date("F Y", $expectedDate);
Ensure that the strtotime() function is being used. Or unexpected result may happen.