tutorial pengembangan web terbaru
 

XSLT system-property() Function


<Lengkap XSLT Fungsi Referensi

Definisi dan Penggunaan

The system- property() fungsi mengembalikan nilai dari properti sistem yang ditentukan oleh nama.

Sifat-sifat sistem dalam XSLT namespace:

  • xsl: Versi - Versi XSLT dilaksanakan oleh prosesor
  • xsl: Vendor - Vendor prosesor XSLT
  • xsl: vendor-url - URL mengidentifikasi vendor prosesor XSLT

Sintaksis

object system-property(string)

parameter

Parameter Deskripsi
string Wajib. Menentukan properti sistem untuk mengembalikan nilai

contoh 1

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
<html>
<body>
<p>
Version:
<xsl:value-of select="system-property('xsl:version')" />
<br />
Vendor:
<xsl:value-of select="system-property('xsl:vendor')" />
<br />
Vendor URL:
<xsl:value-of select="system-property('xsl:vendor-url')" />
</p>
</body>
</html>
</xsl:template>

</xsl:stylesheet>

Lihat file XSL dan melihat hasilnya


<Lengkap XSLT Fungsi Referensi