<?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 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.imap-clearflag-full.php',
    1 => 'imap_clearflag_full',
    2 => 'L&ouml;scht die Flags einer Nachricht',
  ),
  'up' => 
  array (
    0 => 'ref.imap.php',
    1 => 'IMAP Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.imap-check.php',
    1 => 'imap_check',
  ),
  'next' => 
  array (
    0 => 'function.imap-close.php',
    1 => 'imap_close',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/imap/functions/imap-clearflag-full.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.imap-clearflag-full" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">imap_clearflag_full</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">imap_clearflag_full</span> &mdash; <span class="dc-title">Löscht die Flags einer Nachricht</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.imap-clearflag-full-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>imap_clearflag_full</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="class.imap-connection.php" class="type IMAP\Connection">IMAP\Connection</a></span> <code class="parameter">$imap</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$sequence</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$flag</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$options</code><span class="initializer"> = 0</span></span><br>): <span class="type"><a href="language.types.singleton.php" class="type true">true</a></span></div>

  <p class="para rdfs-comment">
   Diese Funktion bewirkt bei den mit <code class="parameter">sequence</code>
   spezifizerten Nachrichten das Löschen der in <code class="parameter">flag</code>
   angegebenen Flags.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.imap-clearflag-full-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    <dt>
<code class="parameter">imap</code></dt><dd><p class="para">Eine <span class="classname"><a href="class.imap-connection.php" class="classname">IMAP\Connection</a></span>-Instanz.</p></dd>
    
     <dt><code class="parameter">sequence</code></dt>
     <dd>
      <p class="para">
       Eine Reihe von Nachrichtennummern. Diese können als Aufzählung in der
       Form <code class="literal">X,Y</code> oder als Intervall in der Form
       <code class="literal">X:Y</code> angegeben werden.
      </p>
     </dd>
    
    
     <dt><code class="parameter">flag</code></dt>
     <dd>
      <p class="para">
       Die folgenden Flags werden unterstüzt: &quot;\\Seen&quot;, &quot;\\Answered&quot;,
       &quot;\\Flagged&quot;, &quot;\\Deleted&quot; und &quot;\\Draft&quot; (siehe auch
       <a href="https://datatracker.ietf.org/doc/html/rfc2060" class="link external">&raquo;&nbsp;RFC2060</a>)
      </p>
     </dd>
    
    
     <dt><code class="parameter">options</code></dt>
     <dd>
      <p class="para">
       <code class="parameter">options</code> ist eine Bitmaske und kann nur die
       folgende Option enthalten:
       <ul class="itemizedlist">
        <li class="listitem">
         <span class="simpara">
          <strong><code><a href="imap.constants.php#constant.st-uid">ST_UID</a></code></strong> - der Parameter
          <code class="parameter">sequence</code> besteht aus UIDs anstelle von
          Nachrichtennummern.
         </span>
        </li>
       </ul>
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.imap-clearflag-full-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt immer <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> zurück.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-function.imap-clearflag-full-errors">
  <h3 class="title">Fehler/Exceptions</h3>
  <p class="para">
   Wenn <code class="parameter">options</code> ungültig ist, wird ein
   <span class="classname"><a href="class.valueerror.php" class="classname">ValueError</a></span> geworfen.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.imap-clearflag-full-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Beschreibung</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  Der Parameter <code class="parameter">imap</code> erwartet nun eine
  <span class="classname"><a href="class.imap-connection.php" class="classname">IMAP\Connection</a></span>-Instanz; vorher wurde eine gültige
  <code class="literal">imap</code>-<a href="language.types.resource.php" class="link">Ressource</a> erwartet.
 </td>
</tr>

     <tr>
      <td>8.0.0</td>
      <td>
       Bei ungültigen Parameterwerten von <code class="parameter">options</code> wird
       nun ein <span class="classname"><a href="class.valueerror.php" class="classname">ValueError</a></span> geworfen; zuvor wurde eine
       Warnung ausgegeben und die Funktion gab <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> zurück.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.imap-clearflag-full-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.imap-setflag-full.php" class="function" rel="rdfs-seeAlso">imap_setflag_full()</a> - Setzt Nachrichtenflags</span></li>
   </ul>
  </p>
 </div>


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