GNU Recode functions Recode This module contains an interface to the GNU Recode library, version 3.5. To be able to use the functions defined in this module you must compile you PHP interpreter using the --with-recode option. In order to do so, you must have GNU Recode 3.5 or higher installed on your system. The GNU Recode library converts files between various coded character sets and surface encodings. When this cannot be achieved exactly, it may get rid of the offending characters or fall back on approximations. The library recognises or produces nearly 150 different character sets and is able to convert files between almost any pair. Most RFC 1345 character sets are supported. recode_string Recode a string according to a recode request Description stringrecode_string stringrequest stringstring Recode the string string according to the recode request request. Returns the recoded string or &false;, if unable to perform the recode request. A simple recode request may be "lat1..iso646-de". See also the GNU Recode documentation of your installation for detailed instructions about recode requests. Basic <function>recode_string</function> example: recode Recode a string according to a recode request Description stringrecode stringrequest stringstring This is an alias for recode_string. It has been added in PHP 4. recode_file Recode from file to file according to recode request Description boolrecode_file stringrequest resourceinput resourceoutput Recode the file referenced by file handle input into the file referenced by file handle output according to the recode request. Returns &false;, if unable to comply, &true; otherwise. This function does not currently process filehandles referencing remote files (URLs). Both filehandles must refer to local files. Basic <function>recode_file</function> example