<?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 => 'ru',
  ),
  'this' => 
  array (
    0 => 'function.pspell-store-replacement.php',
    1 => 'pspell_store_replacement',
    2 => 'Сохраняет замещающую пару для слова',
  ),
  'up' => 
  array (
    0 => 'ref.pspell.php',
    1 => 'Функции Pspell',
  ),
  'prev' => 
  array (
    0 => 'function.pspell-save-wordlist.php',
    1 => 'pspell_save_wordlist',
  ),
  'next' => 
  array (
    0 => 'function.pspell-suggest.php',
    1 => 'pspell_suggest',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ru',
    'path' => 'reference/pspell/functions/pspell-store-replacement.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.pspell-store-replacement" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">pspell_store_replacement</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.0.2, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">pspell_store_replacement</span> &mdash; <span class="dc-title">Сохраняет замещающую пару для слова</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.pspell-store-replacement-description">
  <h3 class="title">Описание</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>pspell_store_replacement</strong></span>(<span class="methodparam"><span class="type"><a href="class.pspell-dictionary.php" class="type PSpell\Dictionary">PSpell\Dictionary</a></span> <code class="parameter">$dictionary</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$misspelled</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$correct</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_store_replacement()</strong></span> сохраняет замещающую пару для
   слова, так что замена позднее может быть возвращена функцией
   <span class="function"><a href="function.pspell-suggest.php" class="function">pspell_suggest()</a></span>. Чтобы использовать преимущества этой функции,
   следует открыть словарь с помощью <span class="function"><a href="function.pspell-new-personal.php" class="function">pspell_new_personal()</a></span>.
   Чтобы навсегда сохранить замещающую пару, необходимо
   использовать <span class="function"><a href="function.pspell-config-personal.php" class="function">pspell_config_personal()</a></span> и
   <span class="function"><a href="function.pspell-config-repl.php" class="function">pspell_config_repl()</a></span> для того, чтобы указать путь, куда сохранить
   пользовательские списки слов, а затем воспользоваться <span class="function"><a href="function.pspell-save-wordlist.php" class="function">pspell_save_wordlist()</a></span>
   для записи изменений на диск.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.pspell-store-replacement-parameters">
  <h3 class="title">Список параметров</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">dictionary</code></dt>
     <dd>
      <p class="para">Экземпляр
класса <span class="classname"><a href="class.pspell-dictionary.php" class="classname">PSpell\Dictionary</a></span>.</p>
     </dd>
    
    
     <dt><code class="parameter">misspelled</code></dt>
     <dd>
      <p class="para">
       Слово с ошибкой.
      </p>
     </dd>
    
    
     <dt><code class="parameter">correct</code></dt>
     <dd>
      <p class="para">
       Исправленное написание для слова с ошибкой (<code class="parameter">misspelled</code>).
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.pspell-store-replacement-returnvalues">
  <h3 class="title">Возвращаемые значения</h3>
  <p class="para">
   Функция возвращает <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>, если выполнилась успешно, или <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>, если возникла ошибка.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.pspell-store-replacement-changelog">
  <h3 class="title">Список изменений</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Версия</th>
      <th>Описание</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  Параметр <code class="parameter">dictionary</code> теперь ожидает экземпляр
  класса <span class="classname"><a href="class.pspell-dictionary.php" class="classname">PSpell\Dictionary</a></span>; раньше параметр ждал ресурс (<span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span>).
 </td>
</tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.pspell-store-replacement-examples">
  <h3 class="title">Примеры</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Пример #1 Пример использования <span class="function"><strong>pspell_store_replacement()</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 /><br /></span><span style="color: #0000BB">pspell_store_replacement</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell</span><span style="color: #007700">, </span><span style="color: #0000BB">$misspelled</span><span style="color: #007700">, </span><span style="color: #0000BB">$correct</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">pspell_save_wordlist</span><span style="color: #007700">(</span><span style="color: #0000BB">$pspell</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


 <div class="refsect1 notes" id="refsect1-function.pspell-store-replacement-notes">
  <h3 class="title">Примечания</h3>
  <blockquote class="note"><p><strong class="note">Замечание</strong>: 
   <p class="para">
    Функция не будет работать, если у вас нет pspell .11.2 и aspell .32.5
    или выше.
   </p>
  </p></blockquote>
 </div>


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