首先,我正在Windows 10上运行并使用3.0.6 64位Wamp。
我从此处http://aspell.net/win32/安装了所需的aspell(完整安装程序-2002年12月22日发布),还下载并安装了Kevin Atkinson预编译的英语词典,然后将aspell-15.dll复制到C:\ wamp64 \ bin \ apache \ apache2.4.23 \ bin并将pspell-15.dll复制到C:\ wamp64 \ bin \ php \ php5.6.25 \ ext,然后将其重命名为php_pspell.dll,然后添加此< / p>
extension = php_pspell.dll
到我的php.ini并重新启动wamp
然后尝试运行此php代码
<?php
function suggest($string)
{
$suggestions = array();
// Suggests possible words in case of misspelling
$config_dic = pspell_config_create('en');
// Ignore words under 2 characters
pspell_config_ignore($config_dic, 2);
// Configure the dictionary
pspell_config_mode($config_dic, PSPELL_FAST);
$dictionary = pspell_new_config($config_dic);
if (!pspell_check($dictionary, $string)) {
$suggestions = pspell_suggest($dictionary, $string);
}
return $suggestions;
}
//usage
$suggestions = suggest("wordl");
然后它抛出了这个错误
致命错误:调用未定义函数pspell_config_create()
有什么想法,请帮忙?