توابع function-available() XSLT
تعریف و استفاده
توابع function-available() یک مقدار بولینگ برمیگرداند، که نشان میدهد پردازشگر XSLT آیا از توابع مشخص شده پشتیبانی میکند یا خیر.
شما میتوانید توابع XSLT و توابع XPath ارثبرداری شده را تست کنید.
قوانین دستور زبان
توابع boolean function-available(string)
پارامتر
پارامتر | توضیح |
---|---|
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() is not supported.</p> </xsl:otherwise> </xsl:choose> </body> </html> </xsl:template> </xsl:stylesheet>