Новые книги

Эта книга научит вас, как разрабатывать программное обеспечение для платформы J2ME компании «Sun Microsystems». Эта книга придерживается стиля учебного пособия, это не справочное руководство.

Цель — дать вам твердую основу в понятиях и техниках, которая даст вам возможность решиться на самостоятельную разработку качественных приложений.
This book was written to provide a single reference for network administration in a Linux environment. Beginners and experienced users alike should find the information they need to cover nearly all important administration activities required to manage a Linux network configuration. The possible range of topics to cover is nearly limitless, so of course it has been impossible to include everything there is to say on all subjects. We've tried to cover the most important and common ones. We've found that beginners to Linux networking, even those with no prior exposure to Unix-like operating systems, have found this book good enough to help them successfully get their Linux network configurations up and running and get them ready to learn more.

There are many books and other sources of information from which you can learn any of the topics covered in this book (with the possible exception of some of the truly Linux-specific features, such as the new Linux firewall interface, which is not well documented elsewhere) in greater depth. We've provided a bibliography for you to use when you are ready to explore more.

pspell_add_to_personal

Учебник РНР
НазадВперёд

pspell_add_to_personal

(PHP 4 >= 4.0.2)

pspell_add_to_personal - добавляет слово в персональный список слов/wordlist.

Описание

int pspell_add_to_personal (int dictionary_link, string word)

pspell_add_to_personal() добавляет слово в personal wordlist. Если вы использовали pspell_new_config() с pspell_config_personal() для открытия словаря, вы можете сохранить wordlist позднее с помощью pspell_save_wordlist(). Пожалуйста, обратите внимание, что эта функция не работает, если у вас нет pspell .11.2 и aspell .32.5 или новее.

Пример 1. pspell_add_to_personal()
$pspell_config = pspell_config_create ("en");
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);

Назад Оглавление Вперёд
Функции Pspell Вверхpspell_add_to_session