fork(1) download
  1. <?php
  2. $time1 = strtotime('23:56');
  3. $time2 = strtotime('00:21');
  4.  
  5. echo "$time1\n$time2\n";
  6. echo ($time1 - $time2)/60;
  7. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
1355097360
1355012460
1415