Creating a Timestamp with mktime() : mktime « Date « PHP






Creating a Timestamp with mktime()

 
<html>
<head>
<title>Creating a Timestamp with mktime()</title>
</head>
<body>
<div>
<?php
$ts = mktime( 2, 30, 0, 5, 1, 2004 );
print date("m/d/y G.i:s", $ts);

print "<br/>";
print "The date is ";
print date("jS of F Y, \a\\t g.i a", $ts );

?>
</div>
</body>
</html>
  
  








Related examples in the same category

1.Calculating the difference between two dates
2.Checking credit card expiration
3.Use mktime to create a time
4.Using mktime() and date()
5.int mktime ( [int hour [, int minute [, int second [, int month[, int day [, int year [, int is_dst]]]]]]] )
6.mktime() produces a GMT timestamp.
7.mktime.php
8.Making an epoch timestamp
9.Get the labor day