搜索

大约有 24 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.2935秒)

11.安装好了scws 1.1.3 用PHP扩展分词结果错误

更新时间:2010-12-09 21:12 t By hya0502

...s/etc/rules.ini'); $cws->set_dict('/usr/local/scws/etc/dict.xdb'); $cws->send_text('我爱看电影,不知道电影院里有什么?'); 分词的结果竟是:“我 爱 看 电 影 , 不 知 道 电 影 院 里 有 什 么 ? ” 这到底是怎么回事呢,安装过程...

12.为什么只打印出里面的数字,中文直接不分词

发布时间:2013-04-12 23:04 t By xiaodai

...scws->set_rule('scws/rules.utf8.ini'); $pscws->set_ignore(true); $pscws->send_text($title); $words = $pscws->get_tops(10); $tags = array(); foreach ($words as $val) { $tags[] = $val['word']; } $pscws->close(); return $tags; } ------------------------------------ $title=并遵守中华人...

13.单个字母或单个字就截掉不出现了?

发布时间:2014-01-09 08:01 t By gardennet

...t('dict.utf8.xdb'); $cws->set_rule('pscws4/etc/rules.utf8.ini'); $cws->send_text($title); $words = $cws->get_tops(10); $cws->close(); $tags = array(); foreach ($words as $val) { $tags[] = $val['word']; } return implode(',', $tags); } print_r(get_tags_arr($text)); 象...

14.SCWS-php扩展的说明及用法

发布时间:2007-06-07 18:06 t By hightman

...ule_path) bool set_ignore(bool yes) bool set_multi(bool yes) bool send_text(string text) mixed get_result(void) mixed get_tops(void) string version(void) }; [b][size=2][color=#154ba0]例子1. 使用类方法分词[/color][/size][/b] [b][size=2][color=#154ba0]例子2. 使...

15.SCWS不支持英文和中英文混合分词吗?

更新时间:2010-08-24 20:08 t By fuhehe

...'); $so->set_dict('words.txt',SCWS_XDICT_TXT); $so->set_ignore(true); $so->send_text("GMhello指导员"); echo ''; while ($tmp = $so->get_result()) { var_dump($tmp); } $so->close(); 在words.txt只定义如下内容 GM 1.0 1.0 * hello指导员 1.0 1.0 * 而输出结果为: array(1) { [0]=> ...

16.关于扩展词库的问题

发布时间:2012-12-10 15:12 t By timeage

...>set_ignore(true); $cws->set_multi(1 | 2 | 4 | 8); $cws->send_text($mydata); $cws->get_result();

17.请教为什么我这个无法分割成功啊?

发布时间:2011-07-05 20:07 t By cool

...统会自动试调用 ini 中指定路径下的词典和规则文件 $so->send_text("我是一个中国人");; while ($tmp = $so->get_result()) { foreach($tmp as $k=>$v){ echo $v['word']."|"; } print_r($tmp); } $so->close(); 我用的版本是:php_scws.dll(2) PHP扩展库 Windows/PHP 5...

18.自定义词库用不了。非常不解啊。。

发布时间:2011-10-21 16:10 t By ci169

...list($text) { $time_start = $this -> get_microtime(); $this -> so->send_text($text); while ($temp = $this -> so->get_result()) { foreach ($temp as $key=>$val) { $list[$val['word']] = $val['word']; } } $time_end = $this -> get_microtime(); $time = $time_end - $tim...

19.使用自定义词库的时候,部分词会丢失

更新时间:2014-04-18 17:04 t By tianly

...分词法聚合 $so->set_duality(true); //要进行分词的语句 $so->send_text("朝鲜近日播放的一个纪录片中,发现"); //获取分词结果,如果提取高频词用get_tops方法 while ($words = $so->get_result()) { foreach ($words as $word) { print_r($word); } ...

20.RE: 1.1.2的 自定义字典无法使用

更新时间:2010-05-24 22:05 t By 逆雪寒

...nore(1); $so->set_multi(0); $words = $_GET['words']; //分词 $so->send_text($words); echo($words); //打印搜索的关键字 var_dump($so->get_result()); $so->close(); 异常下返回的结果 bool(true) bool(true) 笔记本电脑 bool(false) 刷新一两次正常的结果...

123
  • 时间不限
  • 按相关性排序