Description
The fn:timezone-from-date function returns the time zone of an xs:date value, offset from UTC, as an xs:dayTimeDuration value between -PT14H and PT14H . If the time zone is UTC, the value PT0H 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:date? |
return value |
xs:dayTimeDuration? |
ExamplesXPath Example | Results | Explanation |
---|
timezone-from-date(
xs:date('2006-08-15-05:00')) |
-PT5H |
timezone-from-date(
xs:date('2006-08-15')) |
() |
regardless of the implicit time zone |
See AlsoHistory |
Recommended Reading:
|