Reputation: 3168
How can i convert a date of birth like 11/20/1978 to something like November 20, 1978 using PHP?
Thanks
Upvotes: 1
Views: 127
Reputation: 382909
Use date
and strtotime
like this:
echo date('F d, Y', strtotime($your_date));
Upvotes: 3