#!/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安裝完成......"