Convert php date output to word? -


this question has answer here:

is there built in function in php can convert date string?

i have tried

date("m js, y", strtotime("2014-04-12")); 

but our client don't want output.

say have php variable holding date

$datetoday = '2014-04-12' 

i want output in format: "four april 2 thousand , fourteen" or "april 4 2 thousand , fourteen"

is there php built in function through can this? if not please suggest me how can achieve this.

there not such parameters date() function, it's not hard convert manually.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -