<?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 => 'pt_BR',
  ),
  'this' => 
  array (
    0 => 'function.pspell-new-config.php',
    1 => 'pspell_new_config',
    2 => 'Carrega um novo dicion&aacute;rio com configura&ccedil;&otilde;es baseadas em uma configura&ccedil;&atilde;o fornecida',
  ),
  'up' => 
  array (
    0 => 'ref.pspell.php',
    1 => 'Fun&ccedil;&otilde;es de Pspell',
  ),
  'prev' => 
  array (
    0 => 'function.pspell-new.php',
    1 => 'pspell_new',
  ),
  'next' => 
  array (
    0 => 'function.pspell-new-personal.php',
    1 => 'pspell_new_personal',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'pt_BR',
    'path' => 'reference/pspell/functions/pspell-new-config.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.pspell-new-config" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">pspell_new_config</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.0.2, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">pspell_new_config</span> &mdash; <span class="dc-title">Carrega um novo dicionário com configurações baseadas em uma configuração fornecida
  </span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.pspell-new-config-description">
  <h3 class="title">Descrição</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>pspell_new_config</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="type"><span class="type"><a href="class.pspell-dictionary.php" class="type PSpell\Dictionary">PSpell\Dictionary</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="simpara">
   <span class="function"><strong>pspell_new_config()</strong></span> abre um novo dicionário com
   configurações especificadas em um <code class="parameter">config</code>, criado com
   <span class="function"><a href="function.pspell-config-create.php" class="function">pspell_config_create()</a></span> e modificado com
   funções <span class="function"><strong>pspell_config_*()</strong></span>. Este método oferece
   a maior flexibilidade e possui todas as funcionalidades fornecidas por
   <span class="function"><a href="function.pspell-new.php" class="function">pspell_new()</a></span> e
   <span class="function"><a href="function.pspell-new-personal.php" class="function">pspell_new_personal()</a></span>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.pspell-new-config-parameters">
  <h3 class="title">Parâmetros</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">config</code></dt>
     <dd>
      <p class="para">
       O parâmetro <code class="parameter">config</code> é aquele retornado por
       <span class="function"><a href="function.pspell-config-create.php" class="function">pspell_config_create()</a></span> quando a configuração foi criada.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.pspell-new-config-returnvalues">
  <h3 class="title">Valor Retornado</h3>
  <p class="para">
   Retorna uma instância de <span class="classname"><a href="class.pspell-dictionary.php" class="classname">PSpell\Dictionary</a></span> em caso de sucesso,  ou <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> em caso de falha
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.pspell-new-config-changelog">
  <h3 class="title">Registro de Alterações</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Versão</th>
      <th>Descrição</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  O parâmetro <code class="parameter">config</code> agora espera uma instância de <span class="classname"><a href="class.pspell-config.php" class="classname">PSpell\Config</a></span>;
  anteriormente, um <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> era esperado.
 </td>
</tr>

     <tr>
      <td>8.1.0</td>
      <td>
       Agora, retorna uma instância de <span class="classname"><a href="class.pspell-dictionary.php" class="classname">PSpell\Dictionary</a></span>;
       anteriormente, um <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> era retornado.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.pspell-new-config-examples">
  <h3 class="title">Exemplos</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Exemplo #1 <span class="function"><strong>pspell_new_config()</strong></span></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_personal</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell_config</span><span style="color: #007700">, </span><span style="color: #DD0000">"/var/dictionaries/custom.pws"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">pspell_config_repl</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell_config</span><span style="color: #007700">, </span><span style="color: #DD0000">"/var/dictionaries/custom.repl"</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">?&gt;</span></span></code></div>
    </div>

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


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