Error:
Cita:
Codigo:Warning: pspell_new() [function.pspell-new]: PSPELL couldn't open the dictionary. reason: D:\web\as\dict/en.multi:2: The key "strip-accents" is unknown. in D:\xampp\htdocs\bot\test.php on line 19
Warning: pspell_check() [function.pspell-check]: 0 is not a PSPELL result index in D:\xampp\htdocs\bot\test.php on line 21
Sorry, wrong spelling
Warning: pspell_check() [function.pspell-check]: 0 is not a PSPELL result index in D:\xampp\htdocs\bot\test.php on line 21
Sorry, wrong spelling
Código PHP:
$pspell_link = pspell_new("en");
if (pspell_check($pspell_link, "testt")) {
echo "This is a valid spelling";
} else {
echo "Sorry, wrong spelling";
}
Cita:
Warning: pspell_new() [function.pspell-new]: PSPELL couldn't open the dictionary. reason: The file "D:\web\as\dict/es.rws" is not in the proper format. in D:\xampp\htdocs\bot\test.php on line 19
Warning: pspell_check() [function.pspell-check]: 0 is not a PSPELL result index in D:\xampp\htdocs\bot\test.php on line 21
Sorry, wrong spelling
Warning: pspell_check() [function.pspell-check]: 0 is not a PSPELL result index in D:\xampp\htdocs\bot\test.php on line 21
Sorry, wrong spelling
Código PHP:
$pspell_link = pspell_new("es");
if (pspell_check($pspell_link, "casa")) {
echo "This is a valid spelling";
} else {
echo "Sorry, wrong spelling";
}
Un saludo!