发布网友 发布时间:2022-04-06 02:02
共2个回答
懂视网 时间:2022-04-06 06:23
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安装完成......"
更多编程相关知识,请访问:编程入门!!
热心网友 时间:2022-04-06 03:31
需要自己在编译的时候加上相关的扩展模块选项!