<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.gettext.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.dngettext.php',
    1 => 'dngettext',
    2 => 'Pluralversion von dgettext',
  ),
  'up' => 
  array (
    0 => 'ref.gettext.php',
    1 => 'Gettext-Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.dgettext.php',
    1 => 'dgettext',
  ),
  'next' => 
  array (
    0 => 'function.gettext.php',
    1 => 'gettext',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/gettext/functions/dngettext.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.dngettext" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">dngettext</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.2.0, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">dngettext</span> &mdash; <span class="dc-title">Pluralversion von dgettext</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.dngettext-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>dngettext</strong></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">$domain</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">$singular</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">$plural</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">$count</code></span><br>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   Die Funktion <span class="function"><strong>dngettext()</strong></span> erlaubt Ihnen, die aktuelle
   <code class="parameter">domain</code> für eine einzelne Plural-Meldungssuche zu
   überschreiben.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.dngettext-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">domain</code></dt>
     <dd>
      <p class="para">
       Die Domain
      </p>
     </dd>
    
    
     <dt><code class="parameter">singular</code></dt>
     <dd>
      <p class="para">
      </p>
     </dd>
    
    
     <dt><code class="parameter">plural</code></dt>
     <dd>
      <p class="para">
      </p>
     </dd>
    
    
     <dt><code class="parameter">count</code></dt>
     <dd>
      <p class="para">
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.dngettext-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Bei Erfolg ein <a href="language.types.string.php" class="link">String</a>.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-function.dngettext-errors">
  <h3 class="title">Fehler/Exceptions</h3>
  <p class="simpara">
   Wenn <code class="parameter">domain</code> der leere <span class="type"><a href="language.types.string.php" class="type String">String</a></span> ist, wird
   ein <span class="exceptionname"><a href="class.valueerror.php" class="exceptionname">ValueError</a></span> geworfen.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.dngettext-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.4.0</td>
      <td>
       Wirft nun einen <span class="exceptionname"><a href="class.valueerror.php" class="exceptionname">ValueError</a></span>, wenn
       <code class="parameter">domain</code> der leere <span class="type"><a href="language.types.string.php" class="type String">String</a></span> ist.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.dngettext-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.ngettext.php" class="function" rel="rdfs-seeAlso">ngettext()</a> - Pluralversion von gettext</span></li>
   </ul>
  </p>
 </div>


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