This example demonstrates creating a new date with the current time and a new date with a given time.
<?php
$d = new MongoDate();
echo "$d\n";
$d = new MongoDate(1234567890);
echo "$d\n";
$d = new MongoDate(strtotime("2009-05-01 00:00:01"));
echo "$d\n";
?>
Результатом выполнения данного примера
будет что-то подобное:
0.23660600 1235685067
0.00000000 1234567890
0.00000000 1241150401