توابع function-available() XSLT
تعریف و کاربرد
توابع function-available() یک مقدار بولینگ برمیگرداند، که نشاندهنده این است که پردازنده XSLT آیا از توابع مشخصی پشتیبانی میکند یا خیر.
شما میتوانید توابع XSLT و XPath ارثبرین را تست کنید.
نحوه نوشتن
توابع موجود boolean function-available(string)
پارامتر
پارامتر | توضیح |
---|---|
رشته | ضروری است. تعریف تابعی که باید تست شود. |
مثال
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <xsl:choose> <xsl:when test="function-available('sum')"> <p>sum() پشتیبانی میشود.</p> </xsl:when> <xsl:otherwise> <p>sum() پشتیبانی نمیشود.</p> </xsl:otherwise> </xsl:choose> <xsl:choose> <xsl:when test="function-available('current')"> <p>current() پشتیبانی میشود.</p> </xsl:when> <xsl:otherwise> <p>current() پشتیبانی نمیشود.</p> </xsl:otherwise> </xsl:choose> </body> </html> </xsl:template> </xsl:stylesheet>