From 712833e5e069827c1a7b4d6adddf33ad8de82521 Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Thu, 19 Oct 2000 13:29:45 +0000 Subject: [PATCH] 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 --- functions/apache.xml | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/functions/apache.xml b/functions/apache.xml index 73eb507ba0..9b0c953446 100644 --- a/functions/apache.xml +++ b/functions/apache.xml @@ -167,6 +167,58 @@ while (list ($header, $value) = each ($headers)) { + + + ascii2ebcdic + Translate string from ASCII to EBCDIC + + + Description + + + int ascii2ebcdic + string ascii_str + + + + ASCII2EBCDIC is an Apache-specific function which + is available only on EBCDIC based operating systems (OS/390, BS2000). + It translates the ASCII encoded string ascii_str + to its equivalent EBCDIC representation (binary safe), and returns + the result. + + + See also the reverse function EBCDIC2ASCII + + + + + + + ebcdic2ascii + Translate string from EBCDIC to ASCII + + + Description + + + int ebcdic2ascii + string ebcdic_str + + + + EBCDIC2ASCII is an Apache-specific function which + is available only on EBCDIC based operating systems (OS/390, BS2000). + It translates the EBCDIC encoded string ebcdic_str + to its equivalent ASCII representation (binary safe), and returns + the result. + + + See also the reverse function ASCII2EBCDIC + + + +