XSLTProcessor->setParameter()

XSLTProcessor->setParameter() -- Set value for a parameter

Opis

class XSLTProcessor {

bool setParameter ( string namespace, mixed name [, string value] )

}

Sets the value of one or more parameters to be used in subsequent transformations with XSLTProcessor. If the parameter doesn't exist in the stylesheet it will be ignored.

Parametry

namespaceURI

The namespace URI of the XSLT parameter.

localName

The local name of the XSLT parameter. This can be either a string representing the parameter name or an array of name => value pairs.

value

The new value of the XSLT parameter.

Zwracane wartości

Zwraca TRUE w przypadku sukcesu, FALSE w przypadku porażki.

Przykłady

Przykład 1. Changing the owner before the transformation

<?php

$collections
= array(
    
'Marc Rutkowski' => 'marc',
    
'Olivier Parmentier' => 'olivier'
);

$xsl = new DOMDocument;
$xsl->load('collection.xsl');

// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules

foreach ($collections as $name => $file) {
    
// Load the XML source
    
$xml = new DOMDocument;
    
$xml->load('collection_' . $file . '.xml');

    
$proc->setParameter('', 'owner', $name);
    
$proc->transformToURI($xml, 'file:///tmp/' . $file . '.html');
}

?>

Patrz także

XSLTProcessor->getParameter()
XSLTProcessor->removeParameter()

Hosting by: Hurra Communications Sp. z o.o.
Generated: 2007-01-26 18:02:56