mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Can be called with array
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@188555 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
712088f106
commit
eb38562857
1 changed files with 24 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<refentry id="function.xsl-xsltprocessor-set-parameter">
|
||||
<refnamediv>
|
||||
<refname>XSLTProcessor->setParameter()</refname>
|
||||
|
@ -10,11 +10,18 @@
|
|||
<classsynopsis>
|
||||
<ooclass><classname>XSLTProcessor</classname></ooclass>
|
||||
<methodsynopsis>
|
||||
<type>bool</type>
|
||||
<methodname>setParameter</methodname>
|
||||
<type>bool</type><methodname>setParameter</methodname>
|
||||
<methodparam><type>string</type><parameter>namespace</parameter></methodparam>
|
||||
<methodparam><type>mixed</type><parameter>name</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>string</type><parameter>value</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>name</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>value</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
<classsynopsis>
|
||||
<ooclass><classname>XSLTProcessor</classname></ooclass>
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>setParameter</methodname>
|
||||
<methodparam><type>string</type><parameter>namespace</parameter></methodparam>
|
||||
<methodparam><type>array</type><parameter>options</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
<para>
|
||||
|
@ -28,7 +35,7 @@
|
|||
<para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>namespaceURI</parameter></term>
|
||||
<term><parameter>namespace</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The namespace URI of the XSLT parameter.
|
||||
|
@ -36,12 +43,10 @@
|
|||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>localName</parameter></term>
|
||||
<term><parameter>name</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The local name of the XSLT parameter. This can be either a string
|
||||
representing the parameter name or an array of
|
||||
<literal>name => value</literal> pairs.
|
||||
The local name of the XSLT parameter.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -53,6 +58,15 @@
|
|||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>options</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
An array of <literal>name => value</literal> pairs. This syntax is
|
||||
available since PHP 5.1.0.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
Loading…
Reference in a new issue