<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.pspell.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.pspell-config-ignore.php',
    1 => 'pspell_config_ignore',
    2 => 'Ignoriert W&ouml;rter mit weniger als N Buchstaben',
  ),
  'up' => 
  array (
    0 => 'ref.pspell.php',
    1 => 'Pspell Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.pspell-config-dict-dir.php',
    1 => 'pspell_config_dict_dir',
  ),
  'next' => 
  array (
    0 => 'function.pspell-config-mode.php',
    1 => 'pspell_config_mode',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/pspell/functions/pspell-config-ignore.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.pspell-config-ignore" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">pspell_config_ignore</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.0.2, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">pspell_config_ignore</span> &mdash; <span class="dc-title">Ignoriert Wörter mit weniger als N Buchstaben</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.pspell-config-ignore-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>pspell_config_ignore</strong></span>(<span class="methodparam"><span class="type"><a href="class.pspell-config.php" class="type PSpell\Config">PSpell\Config</a></span> <code class="parameter">$config</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$min_length</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="simpara">
   <span class="function"><strong>pspell_config_ignore()</strong></span> sollte auf die Konfiguration
   angewendet werden, bevor <span class="function"><a href="function.pspell-new-config.php" class="function">pspell_new_config()</a></span> aufgerufen
   wird. Diese Funktion erlaubt der Rechtschreibprüfung, kurze Wörter zu
   überspringen.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.pspell-config-ignore-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">config</code></dt>
     <dd>
      <p class="para">Eine <span class="classname"><a href="class.pspell-config.php" class="classname">PSpell\Config</a></span>-Instanz.</p>
     </dd>
    
    
     <dt><code class="parameter">min_length</code></dt>
     <dd>
      <p class="para">
       Wörter mit weniger als <code class="parameter">min_length</code> Buchstaben
       werden übersprungen.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.pspell-config-ignore-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt bei Erfolg <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> zurück. Bei einem Fehler wird <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> zurückgegeben.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.pspell-config-ignore-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">config</code> erwartet nun eine
  <span class="classname"><a href="class.pspell-config.php" class="classname">PSpell\Config</a></span>-Instanz; vorher wurde eine <a href="language.types.resource.php" class="link">Ressource</a>
  erwartet.
 </td>
</tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.pspell-config-ignore-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 <span class="function"><strong>pspell_config_ignore()</strong></span>-Beispiel</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$pspell_config </span><span style="color: #007700">= </span><span style="color: #0000BB">pspell_config_create</span><span style="color: #007700">(</span><span style="color: #DD0000">"de"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">pspell_config_ignore</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell_config</span><span style="color: #007700">, </span><span style="color: #0000BB">5</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$pspell </span><span style="color: #007700">= </span><span style="color: #0000BB">pspell_new_config</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell_config</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">pspell_check</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell</span><span style="color: #007700">, </span><span style="color: #DD0000">"abcd"</span><span style="color: #007700">);    </span><span style="color: #FF8000">// produziert keinen Fehler<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


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