1
0
mirror of https://github.com/php/doc-ru.git synced 2026-04-29 02:03:25 +02:00
Files
archived-doc-ru/reference/pspell/functions/pspell-config-repl.xml
T
Sergey Panteleev 6d43fd64d7 Исправление форматирования
[skip-spellcheck]
[skip-lint]
2022-12-27 03:42:36 +03:00

131 lines
3.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 81b23db050ac0627b056585c16bfe95445ae174e Maintainer: northcat Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.pspell-config-repl" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>pspell_config_repl</refname>
<refpurpose>Устанавливает файл, содержащий замещающие пары</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>pspell_config_repl</methodname>
<methodparam><type>PSpell\Config</type><parameter>config</parameter></methodparam>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
</methodsynopsis>
<para>
Устанавливает файл, содержащий замещающие пары.
</para>
<para>
Замещающие пары повышают качество проверки орфографии. Когда слово
написано с ошибками, а правильный вариант не найден в списке,
<function>pspell_store_replacement</function> может быть использована для того, чтобы сохранить
замещающую пару, а <function>pspell_save_wordlist</function> - чтобы
сохранить список слов вместе с замещающими парами.
</para>
<para>
<function>pspell_config_repl</function> должна быть использована для конфигурации
до вызова <function>pspell_new_config</function>.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>config</parameter></term>
<listitem>
&pspell.parameter.pspell-config;
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>filename</parameter></term>
<listitem>
<para>
Файл должен быть доступен для записи любому, кто запускает PHP (например, nobody).
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.success;
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
&pspell.changelog.pspell-config;
</tbody>
</tgroup>
</informaltable>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Пример использования <function>pspell_config_repl</function></title>
<programlisting role="php">
<![CDATA[
<?php
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/var/dictionaries/custom.pws");
pspell_config_repl($pspell_config, "/var/dictionaries/custom.repl");
$pspell = pspell_new_config($pspell_config);
pspell_check($pspell, "thecat");
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
<note>
<para>
Функция не будет работать, если у вас нет pspell .11.2 и aspell .32.5
или выше.
</para>
</note>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->