XSLTProcessor::setParameter
Set value for a parameter
Description
public bool XSLTProcessor::setParameter(string $namespace
, string $name
, string $value
)
public bool XSLTProcessor::setParameter(string $namespace
, array $options
)
Parameters
-
namespace
-
The namespace URI of the XSLT parameter.
-
name
-
The local name of the XSLT parameter.
-
value
-
The new value of the XSLT parameter.
-
options
-
An array of name => value
pairs.
Return Values
Returns true
on success or false
on failure.
Examples
Example #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');
}
?>
See Also
- XSLTProcessor::getParameter
- XSLTProcessor::removeParameter