PHP  
downloads | documentation | faq | getting help | mailing lists | | php.net sites | links 
search for in the  
previousprinter_writepspell_add_to_personalnext
Last updated: Tue, 09 Jul 2002
view the printer friendly version or the printer friendly version with notes or change language to English | Brazilian Portuguese | Chinese | Czech | Dutch | Finnish | German | Hungarian | Italian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Swedish | Turkish

LXXXIV. Pspell

La librairie pspell vous permet de v�rifier l'orthographe d'un mot, et sugg�rer des corrections.

Vous aurez besoin des librairies aspell et pspell, disponibles � et (respectivement). Il faut aussi ajouter l'otpion --with-pspell[=dir] lors de la compilation de PHP.

Table des mati�res
pspell_add_to_personal -- Ajoute le mot au dictionnaire personnel.
pspell_add_to_session --  Ajoute le mot au dictionnaire personnel de la session courante
pspell_check -- V�rifie un mot
pspell_clear_session -- Remet � z�ro la session courante.
pspell_config_create --  Cr�e une configuration utilis�e pour ouvrir un dictionnaire
pspell_config_ignore -- Ignore les mots des moins de N caract�res.
pspell_config_mode -- Change le mode de suggestion
pspell_config_personal --  Choisit le fichier qui contient le dictionnaire personnel
pspell_config_repl -- Choisit le fichier qui contient les paires de remplacement.
pspell_config_runtogether --  Consid�re deux mots accol�s comme un compos�.
pspell_config_save_repl --  Active la sauvegarde des paires de remplacement
pspell_new_config -- Charge un nouveau dictionnaire
pspell_new_personal --  Charge un nouveau dictionnaire avec un dictionnaire personnel
pspell_new -- Charge un nouveau dictionnaire
pspell_save_wordlist -- Sauve le dictionnaire personnel dans un fichier.
pspell_store_replacement -- Enregistre une paire de remplacement pour un mot
pspell_suggest -- Sugg�egrave;re une orthographe
User Contributed Notes
Pspell
add a note about notes
[email protected]
12-Dec-2001 10:16

If you can't get ASPELL, PSPELL and PHP configured properly (like errors in the make of PHP) then the author of ASPELL has broken source backward compatibility.

The best remedy is to grab an older version of ASPELL and PSPELL.

--Tait

[email protected]
20-Jun-2002 11:00

I origonally compiled Pspell/Aspell/Php and got the �Unable to load �aspell� module.� error. Here is what I did to get a fully working pspell.

Configuration
RedHat 7.2 (installed without pspell/aspell)
php4.2.1 (DSO), pspell .12.2, aspell .33.7.1, Apache 1.3.24 (mod_ssl)

cd aspell
# I did not specify a prefix
./configure
make
make install

cd pspell
# I did not specify a prefix
./configure
make
cd modules
./add-modules
cd ..
make
make install
# For ldconfig /usr/local/lib was not in it�s path, so I had to edit /etc/ld.so.conf and add: /usr/local/lib
ldconfig -v
cd ..

cd php
./configure --with-pspell=/usr/local \
--other config options etc
make
make install

add a note about notes
previousprinter_writepspell_add_to_personalnext
Last updated: Tue, 09 Jul 2002
show source | credits | stats | mirror sites
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Sat Aug 31 06:19:44 2002 CEST