Funzione PHP XSLTProcessor :: removeParameter ()
Definizione e utilizzo
XML è un linguaggio di markup per condividere i dati sul Web, XML è sia leggibile dall'uomo che dalla macchina. L'estensione XSL è un'implementazione dello standard XSL per eseguire la trasformazione XSTL utilizzando la libreria libxslt.
Il XSLTProcessor::removeParameter() La funzione viene utilizzata per rimuovere il valore di un parametro precedentemente impostato della trasformazione corrente.
Sintassi
XSLTProcessor::removeParameter($namespace, name);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | namespace (Mandatory) Questo è un valore stringa che rappresenta l'URI del parametro XSLT. |
2 | name (Mandatory) Questo è un valore stringa che rappresenta il nome del parametro XSLT. |
Valori restituiti
Questa funzione restituisce un valore booleano che è TRUE in caso di successo e FALSE in caso di fallimento.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
Di seguito è riportato un esempio di questa funzione:
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));
?>
Questo produrrà il seguente risultato:
Parameter Value: test_value
Parameter Value after removal:
Title - JavaFX
Authors:
- Krishna
- Rajeev