PHP Date Exercises : Convert the 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 :
PHP Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a PHP script to convert a date from yyyy-mm-dd to dd-mm-yyyy.
Next: Write a PHP script to calculate number of days between two dates.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics