PHP 8.3.4 Released!

pspell_add_to_personal

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

pspell_add_to_personalAdd the word to a personal wordlist

Descrição

pspell_add_to_personal(PSpell\Dictionary $dictionary, string $word): bool

pspell_add_to_personal() adds a word to the personal wordlist. If you used pspell_new_config() with pspell_config_personal() to open the dictionary, you can save the wordlist later with pspell_save_wordlist().

Parâmetros

dictionary

Uma instância de PSpell\Dictionary.

word

The added word.

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Registro de Alterações

Versão Descrição
8.1.0 O parâmetro dictionary agora espera uma instância de PSpell\Dictionary; anteriormente, um resource era esperado.

Exemplos

Exemplo #1 pspell_add_to_personal()

<?php
$pspell_config
= pspell_config_create("en");
pspell_config_personal($pspell_config, "/var/dictionaries/custom.pws");
$pspell = pspell_new_config($pspell_config);

pspell_add_to_personal($pspell, "Vlad");
pspell_save_wordlist($pspell);
?>

Notas

Nota:

This function will not work unless you have pspell .11.2 and aspell .32.5 or later.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top