I need a function that will convert EBCDIC to ASCII. I found the ebcdic2ascii() function, but in the PHP 4 documentation, it says:
(PHP 3>= 3.0.17)
...available only on EBCDIC based operating systems (OS/390, BS2000)
So I assume this to mean that it's not available for PHP 4. We have PHP installed on an AIX Unix machine with Apache. Would this function even work?? We receive reports off of another system that are in ebcdic format and they need to be displayed on a web page, so I need a function that will convert them to ascii.
I noticed that there is a Perl module, "Convert::Ebcdic", that contains the ebcdic2ascii() function. Is it possible for me to "include" this module in my PHP script??
Thanks!