Please note, this is a STATIC archive of website www.tutorialrepublic.com from 10 Sep 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
WEB TUTORIALS
PRACTICE EXAMPLES
HTML REFERENCES
CSS REFERENCES
PHP REFERENCES
Advertisements

How to Convert a Date to Timestamp in PHP

Topic: PHP / MySQLPrev|Next

Answer: Use the strtotime() Function

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.


Related FAQ

Here are some more FAQ related to this topic:

Advertisements
Bootstrap UI Design Templates