Hey, I'm just wondering how to convert a numerical date into text format in PHP
Example change
06.04.2010 to say April 6th 2010
Is there any function already made?
Check out these PHP functions, used together I think you will get what you're looking for:
i.e.:
$mydate = strtotime('06.04.2010');
echo date('F jS Y', $mydate);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With