setting parmeter type outside parameter tag.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@43853 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Damien Seguy 2001-03-19 13:24:24 +00:00
parent 45a9d1b8b3
commit 99b15e13f5

View file

@ -115,7 +115,7 @@
<funcprototype>
<funcdef>int <function>xslt_errno</function></funcdef>
<paramdef>
<parameter><optional>int xh</optional></parameter>
int <parameter>xh</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -138,7 +138,7 @@
<funcprototype>
<funcdef>mixed <function>xslt_error</function></funcdef>
<paramdef>
<parameter><optional>int xh</optional></parameter>
int <parameter>xh</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -161,8 +161,8 @@
<funcprototype>
<funcdef>string <function>xslt_fetch_result</function></funcdef>
<paramdef>
<parameter>int xh</parameter>
<parameter><optional>string result_name</optional></parameter>
int <parameter>xh</parameter>
string <parameter>result_name</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -185,7 +185,7 @@
<funcprototype>
<funcdef>void <function>xslt_free</function></funcdef>
<paramdef>
<parameter>resource xh</parameter>
resource <parameter>xh</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -206,9 +206,9 @@
<funcprototype>
<funcdef>bool <function>xslt_openlog</function></funcdef>
<paramdef>
<parameter>resource xh</parameter>
<parameter>string logfile</parameter>
<parameter><optional>int loglevel</optional></parameter>
resource <parameter>xh</parameter>
string <parameter>logfile</parameter>
int <parameter>loglevel</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -232,7 +232,7 @@
<function>xslt_output_begintransform</function>
</funcdef>
<paramdef>
<parameter>string xslt_filename</parameter>
string <parameter>xslt_filename</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -315,9 +315,9 @@ xslt_output_endtransform();
<function>xslt_process</function>
</funcdef>
<paramdef>
<parameter>string xsl_data</parameter>
<parameter>string xml_data</parameter>
<parameter>string result</parameter>
string <parameter>xsl_data</parameter>
string <parameter>xml_data</parameter>
string <parameter>result</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -400,12 +400,12 @@ if (xslt_process($xslData, $xmlData, $result)) {
<funcprototype>
<funcdef>bool <function>xslt_run</function></funcdef>
<paramdef>
<parameter>resource xh</parameter>
<parameter>string xslt_file</parameter>
<parameter>string xml_data_file</parameter>
<parameter><optional>string result</optional></parameter>
<parameter><optional>array xslt_params</optional></parameter>
<parameter><optional>array xslt_args</optional></parameter>
resource <parameter>xh</parameter>
string <parameter>xslt_file</parameter>
string <parameter>xml_data_file</parameter>
string <parameter>result</parameter>
array <parameter>xslt_params</parameter>
array <parameter>xslt_args</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -429,8 +429,8 @@ if (xslt_process($xslData, $xmlData, $result)) {
<funcprototype>
<funcdef>bool <function>xslt_set_sax_handler</function></funcdef>
<paramdef>
<parameter>resource xh</parameter>
<parameter>array handlers</parameter>
resource <parameter>xh</parameter>
array <parameter>handlers</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
@ -453,12 +453,12 @@ if (xslt_process($xslData, $xmlData, $result)) {
<function>xslt_transform</function>
</funcdef>
<paramdef>
<parameter>string xsl</parameter>
<parameter>string xml</parameter>
<parameter>string result</parameter>
<parameter>string params</parameter>
<parameter>string args</parameter>
<parameter>string resultBuffer</parameter>
string <parameter>xsl</parameter>
string <parameter>xml</parameter>
string <parameter>result</parameter>
string <parameter>params</parameter>
string <parameter>args</parameter>
string <parameter>resultBuffer</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>