Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. require_once "/home/some_user/public_html/class_timediff.php";
  3. /**
  4.  * Vars: $year, $month, $day, $hour (default 10), $minute (default 0), $second (default 0)
  5.  * Sample: $run = new TimeDiff("2015","09","15");
  6.  * $run = new TimeDiff("2015","09","15","12","00","00");
  7.  */
  8. //$run = new TimeDiff("2014","09","15","10","00","00");print $run->TimeTo();
  9. $run = new TimeDiff("2015","09","15");print $run->TimeTo();
  10. //out: 298 суток 13 часов 28 минут
  11. ?>