mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Added some english skeleton documentation for the missing PHP4 modules.
Documentation includes complete function list, parameters, optional parameters with types. No functional description (yet). git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20910 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
eeab6fe60e
commit
fa8a00fc11
2 changed files with 254 additions and 0 deletions
150
functions/com.xml
Normal file
150
functions/com.xml
Normal file
|
@ -0,0 +1,150 @@
|
|||
<reference id="ref.com">
|
||||
<title>COM support functions for Windows</title>
|
||||
<titleabbrev>COM support</titleabbrev>
|
||||
|
||||
<partintro>
|
||||
<simpara>
|
||||
These functions are only available on the Windows version of
|
||||
PHP. These functions have been added in PHP4.
|
||||
</partintro>
|
||||
|
||||
<refentry id="function.com-load">
|
||||
<refnamediv>
|
||||
<refname>com_load</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>string <function>com_load</function></funcdef>
|
||||
<paramdef>string <parameter>module name</parameter></paramdef>
|
||||
<paramdef>string
|
||||
<parameter><optional>server name</optional></parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.com-invoke">
|
||||
<refnamediv>
|
||||
<refname>com_invoke</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>mixed <function>com_invoke</function></funcdef>
|
||||
<paramdef>resource <parameter>object</parameter></paramdef>
|
||||
<paramdef>string <parameter>function_name</parameter></paramdef>
|
||||
<paramdef>mixed
|
||||
<parameter><optional>function parameters, ...</optional></parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.com-propget">
|
||||
<refnamediv>
|
||||
<refname>com_propget</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>mixed <function>com_propget</function></funcdef>
|
||||
<paramdef>resource <parameter>object</parameter></paramdef>
|
||||
<paramdef>string <parameter>property</parameter></paramdef>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.com-get">
|
||||
<refnamediv>
|
||||
<refname>com_get</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>mixed <function>com_get</function></funcdef>
|
||||
<paramdef>resource <parameter>object</parameter></paramdef>
|
||||
<paramdef>string <parameter>property</parameter></paramdef>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.com-propput">
|
||||
<refnamediv>
|
||||
<refname>com_propput</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>void <function>com_propput</function></funcdef>
|
||||
<paramdef>resource <parameter>object</parameter></paramdef>
|
||||
<paramdef>string <parameter>property</parameter></paramdef>
|
||||
<paramdef>mixed <parameter>value</parameter></paramdef>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.com-propset">
|
||||
<refnamediv>
|
||||
<refname>com_propset</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>void <function>com_propset</function></funcdef>
|
||||
<paramdef>resource <parameter>object</parameter></paramdef>
|
||||
<paramdef>string <parameter>property</parameter></paramdef>
|
||||
<paramdef>mixed <parameter>value</parameter></paramdef>
|
||||
<para>
|
||||
This function is an alias for <function>com_propput</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.com-set">
|
||||
<refnamediv>
|
||||
<refname>com_set</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>void <function>com_set</function></funcdef>
|
||||
<paramdef>resource <parameter>object</parameter></paramdef>
|
||||
<paramdef>string <parameter>property</parameter></paramdef>
|
||||
<paramdef>mixed <parameter>value</parameter></paramdef>
|
||||
<para>
|
||||
This function is an alias for <function>com_set</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
-->
|
104
functions/cybercash.xml
Normal file
104
functions/cybercash.xml
Normal file
|
@ -0,0 +1,104 @@
|
|||
<reference id="ref.cybercash">
|
||||
<title>Cybercash payment functions</title>
|
||||
<titleabbrev>Cybercash</titleabbrev>
|
||||
|
||||
<partintro>
|
||||
<simpara>
|
||||
These functions are only available if the interpreter has been
|
||||
compiled with the
|
||||
<option role="configure">--with-cybercash=[DIR]</option>. These
|
||||
functions have been added in PHP4.</simpara>
|
||||
</partintro>
|
||||
|
||||
<refentry id="function.cybercash-encr">
|
||||
<refnamediv>
|
||||
<refname>cybercash_encr</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>array <function>cybercash_encr</function></funcdef>
|
||||
<paramdef>string <parameter>wmk</parameter></paramdef>
|
||||
<paramdef>string <parameter>sk</parameter></paramdef>
|
||||
<paramdef>string <parameter>inbuff</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>The function returns an associative array with the elements
|
||||
"errcode" and, if "errcode" is false, "outbuff" (string),
|
||||
"outLth" (long) and "macbuff" (string).
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.cybercash-decr">
|
||||
<refnamediv>
|
||||
<refname>cybercash_decr</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>array <function>cybercash_decr</function></funcdef>
|
||||
<paramdef>string <parameter>wmk</parameter></paramdef>
|
||||
<paramdef>string <parameter>sk</parameter></paramdef>
|
||||
<paramdef>string <parameter>inbuff</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>The function returns an associative array with the elements
|
||||
"errcode" and, if "errcode" is false, "outbuff" (string),
|
||||
"outLth" (long) and "macbuff" (string).
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
||||
<refentry id="function.cybercash-base64-encode">
|
||||
<refnamediv>
|
||||
<refname>cybercash_base64_encode</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>string <function>cybercash_base64_encode</function></funcdef>
|
||||
<paramdef>string <parameter>inbuff</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
||||
<refentry id="function.cybercash-base64-decode">
|
||||
<refnamediv>
|
||||
<refname>cybercash_base64_decode</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>string <function>cybercash_base64_decode</function></funcdef>
|
||||
<paramdef>string <parameter>inbuff</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
-->
|
Loading…
Reference in a new issue