최신 웹 개발 튜토리얼
 

XSLT system-property() Function


<전체 XSLT 함수 참조

정의 및 사용

system- property() 함수는 이름에 의해 지정된 시스템의 속성 값을 반환한다.

XSLT 네임 스페이스에서 시스템 속성 :

  • XSL : 버전 - 프로세서에 의해 구현 XSLT의 버전
  • XSL : 벤더 - XSLT 프로세서의 벤더
  • XSL : 공급 업체 URL - XSLT 프로세서의 공급 업체를 식별하는 URL

통사론

object system-property(string)

매개 변수

매개 변수 기술
string 필요합니다. 의 값을 반환 할 수있는 시스템 등록 정보를 지정합니다

예 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>

XSL 파일보기결과보기


<전체 XSLT 함수 참조