#!/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安装完成......"
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。