scws安装
Posted two-bees
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scws安装相关的知识,希望对你有一定的参考价值。
mkdir scws cd scws wget http://www.xunsearch.com/scws/down/scws-1.2.3.tar.bz2 tar xvjf scws-1.2.3.tar.bz2 cd scws-1.2.3 ./configure --prefix=/usr/local/scws make && make install
# 下载字典
cd /usr/local/scws/etc wget http://www.xunsearch.com/scws/down/scws-dict-chs-gbk.tar.bz2 wget http://www.xunsearch.com/scws/down/scws-dict-chs-utf8.tar.bz2 tar xvjf scws-dict-chs-gbk.tar.bz2 tar xvjf scws-dict-chs-utf8.tar.bz2
# 编译php扩展
cd /root/scws-1.2.3/phpext phpize ./configure --with-scws=/usr/local/scws --with-php-config=/usr/local/php/bin/php-config make && make install
# 在 php.ini 中加入以下几行
[scws] extension=scws.so scws.default.charset=gbk scws.default.fpath=/usr/local/scws/etc
# 重启php
pkill php-fpm
/usr/local/php/sbin/php-fpm
# 在php程序中用 ini_get(‘scws.default.fpath‘) 读取scws.default.fpath目默认字典录设置
# 测试分词程序
php /root/scws-1.2.3/phpext/scws_test.php //如果运行失败,很可能是未正确指定词典路径
以上是关于scws安装的主要内容,如果未能解决你的问题,请参考以下文章