XSLT function-available() ফাংশন

সংজ্ঞা ও ব্যবহার

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() is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>sum() is not supported.</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="function-available('current')">
<p>current() is supported.</p>
</xsl:when>
<xsl:otherwise>
<p>current() is not supported.</p>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

XSL ফাইল দেখুন,ফলাফল দেখুন.