-6

I need to convert the following date in to Unix format using php code.

2014-06-10T11:05:10.723Z to Unix?

user3820288
  • 225
  • 1
  • 5
  • 13

1 Answers1

0

The reason this has so many downvotes is it takes a single in-built function to change a Date to a timestamp, using a single Google search to find.

echo strtotime("2014-06-10T11:05:10.723Z");

Outputs:

1402398310
James Hunt
  • 2,448
  • 11
  • 23