编程语言
首页 > 编程语言> > 拼写检查并在PHP中建议正确的单词

拼写检查并在PHP中建议正确的单词

作者:互联网

我想知道是否有人知道可以拼写检查字符串并返回建议使用正确拼写单词的任何库,脚本或服务,如果可以用PHP编写的单词不止一个正确拼写单词,则返回建议.

我希望对查询的数量没有限制,所以不喜欢Google的API.

如果可以这样运行,那就太好了:

// string to be spell checked stored in variable
$misspelledString = "The quick brown lama jumped over the lazy dog.";

//pass that variable to function

//function returns suggestion or suggestions as an array of string or strings

$suggestion = spellCheck($misspelledString);

echo "Did you mean ".$suggestion[0];

解决方法:

您可以尝试使用随附的Pspell函数:

http://php.net/manual/en/ref.pspell.php

或一个外部插件,如下所示:

http://www.phpspellcheck.com/

请以this SO question为例.

标签:spell-checking,php
来源: https://codeday.me/bug/20191123/2066030.html