<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.imap.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.imap-utf7-decode.php',
    1 => 'imap_utf7_decode',
    2 => 'Decodes a modified UTF-7 encoded string',
  ),
  'up' => 
  array (
    0 => 'ref.imap.php',
    1 => 'IMAP Functions',
  ),
  'prev' => 
  array (
    0 => 'function.imap-unsubscribe.php',
    1 => 'imap_unsubscribe',
  ),
  'next' => 
  array (
    0 => 'function.imap-utf7-encode.php',
    1 => 'imap_utf7_encode',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imap/functions/imap-utf7-decode.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.imap-utf7-decode" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">imap_utf7_decode</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">imap_utf7_decode</span> &mdash; <span class="dc-title">Decodes a modified UTF-7 encoded string</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.imap-utf7-decode-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>imap_utf7_decode</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$string</code></span>): <span class="type"><span class="type"><a href="language.types.string.php" class="type string">string</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Decodes modified UTF-7 <code class="parameter">string</code> into ISO-8859-1 string.
  </p>
  <p class="para">
   This function is needed to decode mailbox names that contain certain
   characters which are not in range of printable ASCII characters.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.imap-utf7-decode-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">string</code></dt>
     <dd>
      <p class="para">
       A modified UTF-7 encoding string, as defined in <a href="https://datatracker.ietf.org/doc/html/rfc2060" class="link external">&raquo;&nbsp;RFC 2060</a>, section 5.1.3.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.imap-utf7-decode-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns a string that is encoded in ISO-8859-1 and consists of the same
   sequence of characters in <code class="parameter">string</code>, or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>
   if <code class="parameter">string</code> contains invalid modified UTF-7 sequence
   or <code class="parameter">string</code> contains a character that is not part of
   ISO-8859-1 character set.
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.imap-utf7-decode-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.imap-utf7-encode.php" class="function" rel="rdfs-seeAlso">imap_utf7_encode()</a> - Converts ISO-8859-1 string to modified UTF-7 text</span></li>
   </ul>
  </p>
 </div>

</div><?php manual_footer($setup); ?>