.
3ss.cn

php怎么安装bcmath扩展足本(附代码)

php如何安装bcmath扩展脚本?下面

#!/bin/bash

bcmath_ini=/etc/php.d/40-bcmath.ini

## 安装bcmath扩展
cd /data/softs
sudo tar zxvf php-5.6.30.tar.gz
cd /data/softs/php-5.6.30/ext/bcmath/
sudo phpize
sudo ./configure
make &&make install


## 增加扩展配置
cat > $bcmath_ini <<EOF
; Enable bcmath extension module
extension = bcmath.so
EOF


echo "bcmath安装完成......"
赞(0)
未经允许不得转载:互联学术 » php怎么安装bcmath扩展足本(附代码)

评论 抢沙发