这很好,然后我和godaddy一起切换到了cpanel。如果我使用我的php信息运行测试,则表示已启用pspell。有没有人知道测试错误的方法,甚至可能修复?
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/home/user/public_html/custom.pws");
pspell_config_repl($pspell_config, "/home/user/public_html/custom.repl");
$pspell_link = pspell_new_config($pspell_config);
我正在使用下面的代码测试我的代码..这让我知道它是否有效但不会抛出错误!
$pspell_link = pspell_new("en");
$word = "color";
if (pspell_check($pspell_link, $word)) {
echo "Found a fix.";
} else {
echo "Sorry we are working on our search engines, please bare with us!";
}
答案 0 :(得分:0)
我发现这个代码可以解决问题。
error_reporting(E_ALL);
@ini_set('display_errors', 1);
// Call it once first because of a bug in Windows' Aspell.
pspell_new('en');
$test = pspell_new('en');
echo '
Testing pspell.... ', pspell_check($test, 'thisisnotawordandyouknowit') ? 'failure' : 'pass', '.<br />
If no error messages were displayed, Aspell is installed and working properly.';
这显示pspell的错误,而无需通过php.ini运行错误检查