Description
The fn:timezone-from-time function returns the time zone of an xs:time value, offset from UTC, as an xs:dayTimeDuration value between -PT14H and PT14H . If the time zone is UTC, the value PT0S is returned.
This description is © Copyright 2007, Priscilla Walmsley. It is excerpted from the book XQuery by Priscilla Walmsley, O'Reilly, 2007. For a complete explanation of this function, please refer to Appendix A of the book. Arguments and Return TypeName | Type |
$arg |
xs:time? |
return value |
xs:dayTimeDuration? |
ExamplesXPath Example | Results |
---|
timezone-from-time(
xs:time('09:54:00-05:00')) |
-PT5H |
timezone-from-time(
xs:time('09:54:00+05:00')) |
PT5H |
timezone-from-time(
xs:time('09:54:00Z')) |
PT0S |
timezone-from-time(
xs:time('09:54:00')) |
() |
See AlsoHistory |
Recommended Reading:
|