Debian安装OpenCC和php扩展
Posted by he; tagged with Debian , OpenCC
更新系统的软件包列表:
sudo apt update
安装 OpenCC:
sudo apt install opencc
安装完成后,验证安装:
opencc --version echo "汉字" | opencc -c s2t.json
以宝塔面板的php安装路径为例,安装PHP-OpenCC扩展。
下载PHP-OpenCC扩展:
git clone https://github.com/NauxLiu/opencc4php.git cd opencc4php
使用PHP 74的phpize和php-config进行编译:
/www/server/php/74/bin/phpize ./configure --with-php-config=/www/server/php/74/bin/php-config make && make install
添加扩展到PHP配置:
echo "extension=opencc.so" >> /www/server/php/74/etc/php.ini
重启PHP:
/etc/init.d/php-fpm-74 restart