mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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
This commit is contained in:
parent
a50a149a58
commit
a09de30038
1 changed files with 47 additions and 0 deletions
|
@ -1767,6 +1767,53 @@ $nntp = imap_open("{localhost/nntp:119}comp.test","","");
|
|||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.imap-utf7-decode">
|
||||
<refnamediv>
|
||||
<refname>imap_utf7_decode</refname>
|
||||
<refpurpose>
|
||||
Decodes a modified UTF-7 encoded string.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>string <function>imap_utf7_decode</function></funcdef>
|
||||
<paramdef>string <parameter>text</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Decodes modified UTF-7 <parameter>text</parameter> into 8bit data.
|
||||
</para>
|
||||
<para>
|
||||
Returns the decoded 8bit data, or false if the input string was
|
||||
not valid modified UTF-7.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.imap-utf7-encode">
|
||||
<refnamediv>
|
||||
<refname>imap_utf7_encode</refname>
|
||||
<refpurpose>
|
||||
Converts 8bit data to modified UTF-7 text.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcdef>string <function>imap_utf7_encode</function></funcdef>
|
||||
<paramdef>string <parameter>data</parameter></paramdef>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Converts 8bit <parameter>data</parameter> to modified
|
||||
UTF-7 text. The modified UTF-7 encoding is defined in
|
||||
RFC 2060.
|
||||
</para>
|
||||
<para>
|
||||
Returns the modified UTF-7 text.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
|
Loading…
Reference in a new issue