fork download
  1. <?php
  2.  
  3. $d1=new DateTime("2012-07-08 11:14:15.638276");
  4. $d2=new DateTime("2012-07-08 11:14:15.889342");
  5. $diff=$d2->diff($d1);
  6. print_r( $diff ) ;
  7.  
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
DateInterval Object
(
    [y] => 0
    [m] => 0
    [d] => 0
    [h] => 0
    [i] => 0
    [s] => 0
    [weekday] => 0
    [weekday_behavior] => 0
    [first_last_day_of] => 0
    [invert] => 0
    [days] => 0
    [special_type] => 0
    [special_amount] => 0
    [have_weekday_relative] => 0
    [have_special_relative] => 0
)