The source of floor_time.php (click to demo the file) viewed 1693 times.
If I wrote this code, then it is licensed under the GPL. If someone else wrote it, then please ask them if you want to use the code.
<?php
//mktime(int hour, int minute, int second, int month, int day, int year, int is_dst)
$time1 = mktime(0,0,0,5,14,2003);
$time2 = mktime(0,0,0,1,25,2003);
$floor_result = floor ( ($time1 - $time2) / 86400 );
echo "floor ( ($time1 - $time2) / 86400 ) = $floor_result";
?>
If you want to have a look at the source code, chose a file from this list:
To colour code your own PHP paste it here: