Home>Article>Backend Development> Chinese word segmentation PHP extension SCWS installation method

Chinese word segmentation PHP extension SCWS installation method

藏色散人
藏色散人 forward
2020-12-14 11:51:11 3867browse

Chinese word segmentation PHP extension SCWS installation method

Recommended: "PHP Video"

#进入我的下载目录 cd /mydownload #下载源码包 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 # 重新回到SCWS源码 编译PHP扩展 cd /mydownload/scws-1.2.3/phpext phpize /www/server/php/72/bin/php-config ./configure --with-scws=/usr/local/scws --with-php-config=/www/server/php/72/bin/php-config make make install # php.ini添加PHP扩展 php --ini echo 'extension=scws.so'>>/www/server/php/72/etc/php.ini echo 'scws.default.charset=utf8'>>/www/server/php/72/etc/php.ini echo 'scws.default.fpath=/usr/local/scws/etc'>>/www/server/php/72/etc/php.ini

The above is the detailed content of Chinese word segmentation PHP extension SCWS installation method. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:learnku.com. If there is any infringement, please contact admin@php.cn delete