Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Comparing DateTime objects in different timezones

by tangent (Parson)
on Oct 31, 2017 at 23:39 UTC ( [id://1202485]=note: print w/replies, xml ) Need Help??

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
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1202485]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-25 10:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found