How to Convert a Date to Timestamp in PHP
strtotime()
You can use the PHP strtotime() function to convert any textual datetime into Unix timestamp.
The following example demonstrates how this function actually works:
<?php $date1 = "2019-05-16"; $timestamp1 = strtotime($date1); echo $timestamp1; // Outputs: 1557964800 $date2 = "16-05-2019"; $timestamp2 = strtotime($date2); echo $timestamp2; // Outputs: 1557964800 $date3 = "16 May 2019"; $timestamp3 = strtotime($date3); echo $timestamp3; // Outputs: 1557964800 ?>
As you can see in the above example the resulting timestamp is equivalent for the same date with different format. You can also use other variations of English date format.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Use the
strtotime()FunctionYou can use the PHP
strtotime()function to convert any textual datetime into Unix timestamp.The following example demonstrates how this function actually works:
As you can see in the above example the resulting timestamp is equivalent for the same date with different format. You can also use other variations of English date format.
need an explanation for this answer? contact us directly to get an explanation for this answer