From a09de300384ddf403ed361c4f90bd87a9a3dfd9c Mon Sep 17 00:00:00 2001 From: Andrew Skalski Date: Mon, 17 Jan 2000 19:18:17 +0000 Subject: [PATCH] Documented imap_utf7_decode() and imap_utf7_encode(). git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@18709 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/imap.xml | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/functions/imap.xml b/functions/imap.xml index f0ad9c6c01..178c1fb7d8 100644 --- a/functions/imap.xml +++ b/functions/imap.xml @@ -1767,6 +1767,53 @@ $nntp = imap_open("{localhost/nntp:119}comp.test","",""); + + + imap_utf7_decode + + Decodes a modified UTF-7 encoded string. + + + + Description + + string imap_utf7_decode + string text + + + Decodes modified UTF-7 text into 8bit data. + + + Returns the decoded 8bit data, or false if the input string was + not valid modified UTF-7. + + + + + + + imap_utf7_encode + + Converts 8bit data to modified UTF-7 text. + + + + Description + + string imap_utf7_encode + string data + + + Converts 8bit data to modified + UTF-7 text. The modified UTF-7 encoding is defined in + RFC 2060. + + + Returns the modified UTF-7 text. + + + +