<?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 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.pspell-config-mode.php',
    1 => 'pspell_config_mode',
    2 => 'Change the mode number of suggestions returned',
  ),
  'up' => 
  array (
    0 => 'ref.pspell.php',
    1 => 'Pspell Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.pspell-config-ignore.php',
    1 => 'pspell_config_ignore',
  ),
  'next' => 
  array (
    0 => 'function.pspell-config-personal.php',
    1 => 'pspell_config_personal',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/pspell/functions/pspell-config-mode.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.pspell-config-mode" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">pspell_config_mode</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_mode</span> &mdash; <span class="dc-title">Change the mode number of suggestions returned</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.pspell-config-mode-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>pspell_config_mode</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">$mode</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_mode()</strong></span> should be used on a config
   before calling <span class="function"><a href="function.pspell-new-config.php" class="function">pspell_new_config()</a></span>. This function
   determines how many suggestions will be returned by
   <span class="function"><a href="function.pspell-suggest.php" class="function">pspell_suggest()</a></span>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.pspell-config-mode-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">config</code></dt>
     <dd>
      <p class="para">An <span class="classname"><a href="class.pspell-config.php" class="classname">PSpell\Config</a></span> instance.</p>
     </dd>
    
    
     <dt><code class="parameter">mode</code></dt>
     <dd>
      <p class="para">
       The mode parameter is the mode in which spellchecker will work.
       There are several modes available:
       <ul class="itemizedlist">
        <li class="listitem">
         <span class="simpara">
          <strong><code><a href="pspell.constants.php#constant.pspell-fast">PSPELL_FAST</a></code></strong> - Fast mode (least number of
          suggestions)
         </span>
        </li>
        <li class="listitem">
         <span class="simpara">
          <strong><code><a href="pspell.constants.php#constant.pspell-normal">PSPELL_NORMAL</a></code></strong> - Normal mode (more suggestions)
         </span>
        </li>
        <li class="listitem">
         <span class="simpara">
          <strong><code><a href="pspell.constants.php#constant.pspell-bad-spellers">PSPELL_BAD_SPELLERS</a></code></strong> - Slow mode (a lot of
          suggestions)
         </span>
        </li>
       </ul>
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.pspell-config-mode-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Restituisce <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> in caso di successo, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> in caso di fallimento.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.pspell-config-mode-changelog">
  <h3 class="title">Log delle modifiche</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Versione</th>
      <th>Descrizione</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  The <code class="parameter">config</code> parameter expects an <span class="classname"><a href="class.pspell-config.php" class="classname">PSpell\Config</a></span>
  instance now; previously, a <a href="language.types.resource.php" class="link">resource</a> was expected.
 </td>
</tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.pspell-config-mode-examples">
  <h3 class="title">Esempi</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 <span class="function"><strong>pspell_config_mode()</strong></span> Example</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">"en"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">pspell_config_mode</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell_config</span><span style="color: #007700">, </span><span style="color: #0000BB">PSPELL_FAST</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">"thecat"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


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