PHP - Função XSLTProcessor :: getSecurityPrefs ()
Definição e Uso
XML é uma linguagem de marcação para compartilhar os dados na web, XML é tanto para leitura humana quanto para máquina. A extensão XSL é uma implementação do padrão XSL para realizar a transformação XSTL usando a biblioteca libxslt.
o XSLTProcessor::getSecurityPrefs() A função é usada para recuperar o valor de preferência de segurança definido anteriormente para a transformação atual.
Sintaxe
XSLTProcessor::getSecurityPrefs();
Parâmetros
Esta função não aceita nenhum parâmetro.
Valores Retornados
Esta função retorna um valor inteiro que representa a preferência de segurança atual.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
A seguir está um exemplo desta função -
sample.xml:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="example.xsl"?>
<Tutorial>
<Title>JavaFX</Title>
<Authors>
<Author>Krishna</Author>
<Author>Rajeev</Author>
</Authors>
<Body>Sample text</Body>
</Tutorial>
sample.xsl:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
Title - <xsl:value-of select="/Tutorial/Title"/>
Authors: <xsl:apply-templates select="/Tutorial/Authors/Author"/>
</xsl:template>
<xsl:template match="Author">
- <xsl:value-of select="." />
</xsl:template>
</xsl:stylesheet>
sample.php:
<?php
//Loading an XSL document
$xsl = new DOMDocument();
$xsl->load("sample.xsl");
//Loading an XML document
$xml = new DOMDocument();
$xml->load("sample.xml");
//Creating an XSLTProcessor
$proc = new XSLTProcessor();
//Importing the XSL document
$proc->importStyleSheet($xsl);
//Setting the security preferences
$proc->setSecurityPrefs(XSL_SECPREF_READ_FILE);
$val = $proc->getSecurityPrefs();
print("Security Preference Value :".$val);
//Transforming the style to XML
print($proc->transformToXML($xml));
?>
Isso produzirá o seguinte resultado -
Security Preference Value :2
Title - JavaFX
Authors:
- Krishna
- Rajeev