PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<XSLTProcessor->removeParameter()XSLTProcessor->transformToDoc()>
Last updated: Mon, 16 Jul 2012

XSLTProcessor->setParameter()

(no version information, might be only in CVS)

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

说明

class XSLTProcessor {

bool setParameter ( string namespace, string name, string value )

}class XSLTProcessor {

bool 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.

参数

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.

返回值

如果成功则返回 TRUE,失败则返回 FALSE

例子 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');
}

?>




<XSLTProcessor->removeParameter()XSLTProcessor->transformToDoc()>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST