Domanda

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

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top