| |
difftime
Purpose:
Computes the difference between two calender times t1 and t2.
Return Values:
Returns a real denoting the difference t1-t2 expressed in seconds.
Example:
input: | resulting output:
| <
// Compute the difference between UTC and local time
let x=caltime();
t1=mktime(gmtime(x));
t2=mktime(localtime(x));
? difftime(t1,t2)
> | 0.000000 |
See Also:
caltime(), gmtime(), localtime(), mktime(), strftime(), strptime().
This page was dynamically generated by the
web application development tool RADpage
of H.E.I.
See "Was ist AJAX? "
(in German). In Germany H.E.I. provides Webdesign in Mannheim and
Web Programming (Programmierung).
© 1996-2025 H.E.I. All Rights Reserved.
|