توابع 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>

فایل XSL را مشاهده کنید,نتیجه را مشاهده کنید.