PHP:向 pspell 添加单词?
我像这样使用 pspell:
$ps = pspell_new("en");
if(!pspell_check($ps, $word))
{
$suggestion = pspell_suggest($ps, $word);
}
但是我想在列表中添加一些行业术语。
我查了一下 pspell_add_to_session ,上面说第一个参数应该是 int $dictionary_link 但我不知道那是什么,也没有例子。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的情况下,由
pspell_new()
创建的$ps
变量是“字典链接”:In your case, the
$ps
variable created bypspell_new()
is that "dictionary link":$dictionary_link
整数是 pspell 库句柄的整数表示,由pspell_new
或pspell_new_personal
。 PHP 文档中关于此变量的很多地方都不完整。[1][2 ][3][< a href="http://www.php.net/manual/en/function.pspell-config-ignore.php" rel="nofollow noreferrer">4][5][6][7][8][ 9]The
$dictionary_link
integer is an integer representation of the pspell library handle, as returned bypspell_new
orpspell_new_personal
. The PHP documentation is incomplete in a lot of places regarding this variable.[1][2][3][4][5][6][7][8][9]