Help for this page

Select Code to Download


  1. or download this
    my $duration = $dt_received->epoch - $dt_sent->epoch;
    print "$duration seconds";
    
    # 27 seconds
    
  2. or download this
    my $duration = $dt_received->subtract_datetime( $dt_sent );
    print $duration->minutes, " minutes, ", $duration->seconds, " seconds"
    +;
    
    # 0 minutes, 27 seconds