...$text); $top = scws_get_tops($sh, 5); print_r($top); 我用的是 php_scws.dll (1.1.5) [For PHP-5.2.x (44KB)]
...一样的问题。 我已经在php.ini中这样配置了: extension = php_scws.dll scws.default.charset = gbk scws.default.fpath = "E:/APMServ5.2.0/scws/etc" 就不需要下面的配置了对吗: scws.default.charset (default = gbk) , Changeable = PHP_INI_ALL scws.default.fpath (default ...
修改 php_scws.c 的 “ zend_module_entry scws_module_entry ” 附近的代码 [code] ZEND_DECLARE_MODULE_GLOBALS(scws); static zend_module_dep scws_deps[] = { {NULL, NULL, NULL} }; zend_module_entry scws_module_entry = { #if ZEND_MODULE_API_NO >= 20050922 STANDARD_MODULE_HEADER...
我想将收集的词加入到词库中去,用以提高切词的准确度,不知道如何添加。 还有,我想问问,Windows版的“php_scws.dll”文件有没有更新到1.0.3版 非常感谢。
...前尚未提供直接导出的工具(将来可能提供) windows版的php_Scws.dll因缺省编译环境和经验本人未能编译, 以前都是由网友bin友情编译... 如果您的词汇是属于通用的词汇, 您可以将词表发到论坛里, 我会集中统一更新词典
... lib, it can be run on 32bit xp, but when used it on 64bit it still alert: php_scws.dll %1 is not a valid Win32 application.~~~ hightman, i want to compile the lib with 64bit, does it run?[hr] by the way, the code is ansi based standard, and when i compile it on OSI standard with vs9, it's appear...
参见 phpext/php_scws.c 中的 PHP_FUNCTION(scws_get_tops); 吧 这个用法有说明里有提到啊,就是返回一个链表结构,依次遍历取出就好了,大概如下: scws_t s; scws_top_t top, cur; char *text = "测试说明文字"; s = scws_new(); scws_set_charset(s, "utf8"); scw...
...['word']."|"; } print_r($tmp); } $so->close(); 我用的版本是:php_scws.dll(2) PHP扩展库 Windows/PHP 5.2.x 准确: 95%, 召回: 91%, 速度: 40KB/sec 在PHP里面运行后:显示 我|是|一|个|中|国|人|Array ( [0] => Array ( [word] => 我 [off] => 0 [len] => 3 [idf] => 0 [...
[quote='hightman' pid='6608' dateline='1311994562'] 参见 phpext/php_scws.c 中的 PHP_FUNCTION(scws_get_tops); 吧 这个用法有说明里有提到啊,就是返回一个链表结构,依次遍历取出就好了,大概如下: scws_t s; scws_top_t top, cur; char *text = "测试说...
php.in 的配置 [scws] extension=php_scws.dll scws.default.charset = utf8 scws.default.fpath = "e:/soft/xunsearch/scws" e:/soft/xunsearch/scws目录下的文件: dict.utf8.xdb rules.ini rules.utf8.ini rules_cht.utf8.ini 重新启动apache发现已经启动了这个extention. php 代...