douhanxujiuji6098 2014-01-21 18:53
浏览 24
已采纳

如何将拼写检查器放入搜索引擎?

Here is the index.php

 <input type='text' size='90' name='search' onKeyPress='<?php spellcheck($search); ?>'>
 <input type='submit' name='submit' value='Search source code' ></br></br></br>

And here is where checking is suppose to be done.

checker.php

<?php
function spellcheck ( $string ) {
    $words = preg_split('/[\W]+?/',$string);
    $misspelled = $return = array();
    $int = pspell_new('en');
    foreach ($words as $value) {
        if (!pspell_check($int, $value)) {
            $misspelled[] = $value;
        }
    }
    foreach ($misspelled as $value) {
        $return[$value] = pspell_suggest($int, $value);
    }
    return $return;
}
?>

I want to have the same function like in google every time i have my spelling wrong it has underline on it. How can i do that?

  • 写回答

1条回答 默认 最新

  • dongxixian7803 2014-01-21 19:13
    关注

    This question was already asked and answered once before mate. Take a look and see if their answers are of any use to you.

    How to add spelling suggestions to PHP/SQL search script

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部