PHP Date Exercises : Convert the date to timestamp
6. Convert Date to Timestamp
Write a PHP script to convert the date to timestamp.
Sample date : 12-05-2014
Sample Solution:
PHP Code:
<?php
// Convert the date string '12-05-2014' to a Unix timestamp
$timestamp = strtotime('12-05-2014');
// Print the Unix timestamp
echo $timestamp."\n";
?>
Output:
1399833000
Explanation:
The above PHP code converts the date string '12-05-2014' into a Unix timestamp using the "strtotime()" function. The "strtotime()" function parses the given date/time string and returns the Unix timestamp representing that date/time. Finally, it prints the Unix timestamp to the standard output.
Flowchart :

For more Practice: Solve these Related Problems:
- Write a PHP script to convert a date provided in dd-mm-yyyy format into a UNIX timestamp and display both the date and its timestamp.
- Write a PHP function to convert an array of dates into their corresponding UNIX timestamps.
- Write a PHP program to prompt for a date input, convert it to a timestamp, and then display the formatted date from that timestamp.
- Write a PHP script that takes a date string, validates its format, converts it to a timestamp, and handles conversion errors gracefully.
Go to:
PREV : Date Format Conversion (yyyy-mm-dd to dd-mm-yyyy).
NEXT : Calculate Days Between Two Dates.
PHP Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.