date(“m”); returns the following result for this month… “02”
That is fine and dandy, but the problem is, I need to change 02 into February, and not by changing it to date(“F”);
I need to use the date function to convert the supplied number of 02 into February, is there a way of going about this logically without a bunch of if/else statements??
While date(‘F’) would be preferred:
EDIT
Adjusting to hitherto unspecified requirement:
doc: https://www.php.net/manual/en/function.mktime.php