pspell_add_to_personal

(PHP 4 >= 4.0.2, PHP 5)

pspell_add_to_personal --  Fügt der persönlichen Wortliste ein Wort hinzu

Beschreibung

int pspell_add_to_personal ( int wörterbuch_link, string Wort )

pspell_add_to_personal() fügt der persönlichen Wortliste ein Wort hinzu. Falls Sie pspell_new_config() mit pspell_config_personal() verwendet haben, um das Wörterbuch zu öffnen, können Sie die Wortliste später mit pspell_save_wordlist() speichern. Bitte beachten Sie, dass diese Funktion nicht funktioniert, wenn Sie nicht pspell .11.2 und aspell .32.5 oder höher haben.

Beispiel 1. pspell_add_to_personal()

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

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

Hosting by: Hurra Communications GmbH
Generated: 2007-01-26 17:57:21