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

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top