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