(PHP 5, PHP 7)
Set value for a parameter
bool XSLTProcessor::setParameter ( string $namespace, string $name, string $value )
bool XSLTProcessor::setParameter ( string
$namespace
, array $options
)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.
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. This syntax is available since PHP 5.1.0.
Returns:
Returns TRUE
on success or FALSE
on failure.
Examples:
Changing the owner before the transformation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?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 ); } ?> |
See also:
Please login to continue.