PHP date to timestamp

PHP date to timestamp


Posted in : PHP Posted on : February 2, 2011 at 6:31 PM Comments : [ 0 ]

In this tutorial you will learn how convert PHP date to timestamp in a PHP web application.

PHP date to timestamp

In this tutorial you will learn how convert  PHP date to timestamp in a PHP web application. The code of  "php-date-to-timestamp.php" given below :

<?php
$date=date('Y-m-d');
echo "Date :: ".$date."<br>";
$date_arr=explode('-',$date);
echo "Date to timestamp =>";
echo mktime(0,0,0,$date_arr[1],$date_arr[2],$date_arr[0]);
?>

Output :

When run "php-date-to-timestamp.php"  display output as : 

Download Source Code

Go to Topic «PreviousHomeNext»

Your Comment:


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

 
Tutorial Topics