我如何测试 pspell?

How can I test pspell?

这工作正常,然后我切换到 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!";
}

我发现这段代码可以解决问题。

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

运行 错误检查