mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Finally document the (currently only PHP3) functions ebcdic2ascii() and ascii2ebcdic()
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@34124 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
37cf1c9894
commit
712833e5e0
1 changed files with 52 additions and 0 deletions
|
@ -167,6 +167,58 @@ while (list ($header, $value) = each ($headers)) {
|
|||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ascii2ebcdic">
|
||||
<refnamediv>
|
||||
<refname>ascii2ebcdic</refname>
|
||||
<refpurpose>Translate string from ASCII to EBCDIC</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>ascii2ebcdic</function></funcdef>
|
||||
<paramdef>string <parameter>ascii_str</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
<function>ASCII2EBCDIC</function> is an Apache-specific function which
|
||||
is available only on EBCDIC based operating systems (OS/390, BS2000).
|
||||
It translates the ASCII encoded string <parameter>ascii_str</parameter>
|
||||
to its equivalent EBCDIC representation (binary safe), and returns
|
||||
the result.
|
||||
</para>
|
||||
<para>
|
||||
See also the reverse function <function>EBCDIC2ASCII</function>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ebcdic2ascii">
|
||||
<refnamediv>
|
||||
<refname>ebcdic2ascii</refname>
|
||||
<refpurpose>Translate string from EBCDIC to ASCII</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>ebcdic2ascii</function></funcdef>
|
||||
<paramdef>string <parameter>ebcdic_str</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
<function>EBCDIC2ASCII</function> is an Apache-specific function which
|
||||
is available only on EBCDIC based operating systems (OS/390, BS2000).
|
||||
It translates the EBCDIC encoded string <parameter>ebcdic_str</parameter>
|
||||
to its equivalent ASCII representation (binary safe), and returns
|
||||
the result.
|
||||
</para>
|
||||
<para>
|
||||
See also the reverse function <function>ASCII2EBCDIC</function>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
|
Loading…
Reference in a new issue