我想使用pspell_check来确定用户选择的密码的复杂性。问题是我的代码受到网络上可用的基本示例的启发,总是返回FALSE。示例代码:
$pspell_link = pspell_new('en');
echo (int)pspell_check($pspell_link, 'correct');
echo (int)pspell_check($pspell_link, 'wrongsishly');
我的设置可能有什么问题?
我想使用pspell_check来确定用户选择的密码的复杂性。问题是我的代码受到网络上可用的基本示例的启发,总是返回FALSE。示例代码:
$pspell_link = pspell_new('en');
echo (int)pspell_check($pspell_link, 'correct');
echo (int)pspell_check($pspell_link, 'wrongsishly');
我的设置可能有什么问题?