<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.iconv.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.iconv-mime-decode.php',
    1 => 'iconv_mime_decode',
    2 => 'Bir MIME başlık alanının kodunu &ccedil;&ouml;zer',
  ),
  'up' => 
  array (
    0 => 'ref.iconv.php',
    1 => 'iconv İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.iconv-get-encoding.php',
    1 => 'iconv_get_encoding',
  ),
  'next' => 
  array (
    0 => 'function.iconv-mime-decode-headers.php',
    1 => 'iconv_mime_decode_headers',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/iconv/functions/iconv-mime-decode.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.iconv-mime-decode" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">iconv_mime_decode</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">iconv_mime_decode</span> &mdash; <span class="dc-title">Bir <code class="literal">MIME</code> başlık alanının kodunu çözer
  </span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.iconv-mime-decode-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>iconv_mime_decode</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$kodlanmış_başlık</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$kip</code><span class="initializer"> = 0</span></span>, <span class="methodparam"><span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.string.php" class="type string">string</a></span></span> <code class="parameter">$karküm</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></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">
   Bir <code class="literal">MIME</code> başlık alanının kodunu çözer.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.iconv-mime-decode-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">kodlanmış_başlık</code></dt>
     <dd>
      <p class="para">
       Bir dizge olarak kodlanmış başlık.
      </p>
     </dd>
    
    
     <dt><code class="parameter">kip</code></dt>
     <dd>
      <p class="para">
       <code class="parameter">kip</code> bağımsız değişkeni, işlev bozuk bir MIME başlık
       alanı saptadığı takdirde işlevin davranışını belirler. Aşağıdaki
       değerleri bir bit maskesi olarak belirtebilirsiniz:
       <table class="doctable table">
        <caption><strong><span class="function"><strong>iconv_mime_decode()</strong></span> tarafından desteklenen
        bit maskeleri</strong></caption>
        
         <thead>
          <tr>
           <th>Değer</th>
           <th>Sabit</th>
           <th>Açıklama</th>
          </tr>

         </thead>

         <tbody class="tbody">
          <tr>
           <td>1</td>
           <td>ICONV_MIME_DECODE_STRICT</td>
           <td>
            Belirtilirse, başlık,
            <a href="https://datatracker.ietf.org/doc/html/rfc2047" class="link external">&raquo;&nbsp;RFC2047</a>&#039;de tanımlanan
            standartlarla tam uyumlu kodlanır. Bu seçenek öntanımlı olarak
            kapalıdır, çünkü belirtime uymayan ve doğru
            <code class="literal">MIME</code> başlıkları üretmeyen pek çok kullanıcı
            eposta istemcisi var.
           </td>
          </tr>

          <tr>
           <td>2</td>
           <td>ICONV_MIME_DECODE_CONTINUE_ON_ERROR</td>
           <td>
            Belirtilirse, <span class="function"><a href="function.iconv-mime-decode-headers.php" class="function">iconv_mime_decode_headers()</a></span>
            işlevi yazım hatalarını yoksayıp belirtilen başlığı işlemeye devam
            etmeye çalışır.
           </td>
          </tr>

         </tbody>
        
       </table>

      </p>
     </dd>
    
    
     <dt><code class="parameter">karküm</code></dt>
     <dd>
      <p class="para">
       İsteğe bağlı <code class="parameter">karküm</code> bağımsız değişkeni elde edilecek
       dizgenin karakter kümesini belirler. Belirtilmezse veya <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>
       belirtilirse dizgenin karakter kodlamasının
       <a href="iconv.configuration.php" class="link">iconv.internal_encoding</a>
       yönergesinde belirtilen kodlama olacağı varsayılır.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.iconv-mime-decode-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Başarı durumunda kodu çözülmüş <code class="literal">MIME</code> alanı, aksi takdirde
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> döner.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.iconv-mime-decode-changelog">
 <h3 class="title">Sürüm Bilgisi</h3>
 <table class="doctable informaltable">
  
   <thead>
    <tr>
     <th>Sürüm: </th>
     <th>Açıklama</th>
    </tr>

   </thead>

   <tbody class="tbody">
    <tr>
     <td>8.0.0</td>
     <td>
      <code class="parameter">karküm</code> artık <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> olabiliyor.
     </td>
    </tr>

   </tbody>
  
 </table>

</div>


 <div class="refsect1 examples" id="refsect1-function.iconv-mime-decode-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="function"><strong>iconv_mime_decode()</strong></span> örneği</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">// Sonuç: "Subject: Prüfung Prüfung"<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">iconv_mime_decode</span><span style="color: #007700">(</span><span style="color: #DD0000">"Subject: =?UTF-8?B?UHLDvGZ1bmcgUHLDvGZ1bmc=?="</span><span style="color: #007700">,<br />                       </span><span style="color: #0000BB">0</span><span style="color: #007700">, </span><span style="color: #DD0000">"ISO-8859-1"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.iconv-mime-decode-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.iconv-mime-decode-headers.php" class="function" rel="rdfs-seeAlso">iconv_mime_decode_headers()</a> - Bir defada birden fazla MIME başlık alanını
  &ccedil;&ouml;z&uuml;mler</span></li>
    <li><span class="function"><a href="function.mb-decode-mimeheader.php" class="function" rel="rdfs-seeAlso">mb_decode_mimeheader()</a> - MIME başlık alanındaki dizgeyi d&ouml;n&uuml;şt&uuml;r&uuml;r</span></li>
    <li><span class="function"><a href="function.imap-mime-header-decode.php" class="function" rel="rdfs-seeAlso">imap_mime_header_decode()</a> - MIME başlık elemanlarının kodlamasını a&ccedil;ar</span></li>
    <li><span class="function"><a href="function.imap-base64.php" class="function" rel="rdfs-seeAlso">imap_base64()</a> - Base64 kodlu dizgeyi 8 bitlik dizgeye d&ouml;n&uuml;şt&uuml;r&uuml;r</span></li>
    <li><span class="function"><a href="function.imap-qprint.php" class="function" rel="rdfs-seeAlso">imap_qprint()</a> - Bir 7 bitlik dizgeyi 8 bitlik dizgeye d&ouml;n&uuml;şt&uuml;r&uuml;r</span></li>
   </ul>
  </p>
 </div>


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