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

查看 XSL 文件查看结果