Função PHP XSLTProcessor :: removeParameter ()
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::removeParameter() função é usada para remover o valor de um parâmetro definido anteriormente da transformação atual.
Sintaxe
XSLTProcessor::removeParameter($namespace, name);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | namespace (Mandatory) Este é um valor de string que representa o URI do parâmetro XSLT. |
2 | name (Mandatory) Este é um valor de string que representa o nome do parâmetro XSLT. |
Valores Retornados
Esta função retorna um valor booleano que é VERDADEIRO em caso de sucesso e FALSO em caso de falha.
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 parameter
$proc->setParameter('', 'param', 'test_value');
//Retrieving the value of the parameter
print("Parameter Value: ".$proc->getParameter('', 'param')."\n");
$proc->removeParameter('', 'param');
//Retrieving the value of the parameter
print("Parameter Value after removal: ".$proc->getParameter('', 'param'));
//Transforming the style to XML
print($proc->transformToXML($xml));
?>
Isso produzirá o seguinte resultado -
Parameter Value: test_value
Parameter Value after removal:
Title - JavaFX
Authors:
- Krishna
- Rajeev