Download Free Dictionaries For PHP Spell Check...
Working With Dictionaries
Installation of New Dictionaries:
- Dictionaries can be downloaded for free from www.phpspellcheck.com.
- Unzip
- Copy the .dic file /phpspellcheck/dictionaries/
Adding New Words:
- Add 1 word per line to /phpspellcheck/dictionaries/custom.txt
Removing Words:
- Add 1 word per line to /phpspellcheck/dictionaries/language-rules/banned-words.txt
Create Your Own Dictionary
Your own .dic dictionaries can be Encoded from text files PHPSpellCheck .
Setting The Default Dictionary
SourceCode:$mySpell->Language = "Espanol"; // Name of the .dic file
Using Multiple Dictionaries At The Same Time
SourceCode:$mySpell->Language = "English (Canada),Francais"; // comma separated list
- This causes the spellchecker to use both dictionaries simultaneously. This unique feature is very useful for spell-checking multi-language documents.