Search code examples
phpdatetimetimedatetime-conversion

convert time to Unix Time stamp


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

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


Solution

  • 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