Pergunta

I have to convert the following date format to m-d-Y format. How can I achieve it? $date='Thu, 20 Jun 2013 09:09:52 UTC' and what I am suppose to pass in query is 6-20-2013

Please let me know a few quick tricks.

Thanks

Foi útil?

Solução

date('m-d-Y', strtotime('Thu, 20 Jun 2013 09:09:52 UTC'))

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top