I have a dateTime variable, and I want to convert it to a decimal value of epoch. How can this be done?
I tried using:
seconds-from-duration($time, xs:dateTime('1970-01-01T00:00:00'))
but it just returns 0.
Please advice. Thanks.
|
feedback
|
|
This transformation:
when applied on any XML document (not used), produces the wanted result -- the current date-time and its Unix epoch (the number of seconds since 1/1/1970 ):
| |||||||||
feedback
|
"epoch"defined? – Dimitre Novatchev Aug 12 '10 at 13:040. seconds-from-duration() just extracts the value of the seconds component from the supplied xs:duration. You obviously want to convert the duration to all seconds and then to calculate whatever "epoch" may be. Please, correct your question. – Dimitre Novatchev Aug 12 '10 at 13:10