如何在CentOS中安装bcmath扩展

本文概述

  • 1.使用cli安装
  • 2.重新启动apache / httpd服务
在任务中实现一些需要与数学相关的功能的特殊功能, 而突然之间这种功能在本地可用, 而在生产服务器上却不可用, 这很烦人。 bcmath扩展帮助你避免PHP中的任意精度错误, 此扩展中包含的函数使你可以对任何大小和精度的数字进行计算, 因为它们以字符串表示。
为了在CentOS中安装bcmath, 你将需要遵循以下步骤:
1.使用cli安装你可以通过yum通过命令行安装bcmath扩展:
yum install php-bcmath

Yum将自动安装与你已安装的PHP版本相关的bcmath扩展名, 在本例中, 我们正在运行PHP 5.3版本。执行命令后, 你将获得类似于以下内容的输出:
yum install php-bcmathLoaded plugins: prioritiesSetting up Install ProcessPLESK_17_5_3-extras| 2.9 kB00:00PLESK_17_PHP56| 2.9 kB00:00base| 3.7 kB00:00extras| 3.4 kB00:00plesk-migrator| 2.9 kB00:00plesk-migrator-tp| 2.9 kB00:00plesk11-base| 2.9 kB00:00plesk11-thirdparty| 2.9 kB00:00plesk11-updates| 2.9 kB00:00http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/repodata/repomd.xml: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'apt.sw.be'"Trying other mirror.rpmforge| 1.9 kB00:00updates| 3.4 kB00:00Resolving Dependencies--> Running transaction check---> Package php-bcmath.x86_64 0:5.3.3-49.el6 will be installed--> Finished Dependency ResolutionDependencies Resolved================================================================================ PackageArchVersionRepositorySize================================================================================Installing: php-bcmathx86_645.3.3-49.el6base40 kTransaction Summary================================================================================Install1 Package(s)Total download size: 40 kInstalled size: 29 kIs this ok [y/N]: yDownloading Packages:php-bcmath-5.3.3-49.el6.x86_64.rpm|40 kB00:00Running rpm_check_debugRunning Transaction TestTransaction Test SucceededRunning TransactionInstalling : php-bcmath-5.3.3-49.el6.x86_641/1Verifying: php-bcmath-5.3.3-49.el6.x86_641/1Installed:php-bcmath.x86_64 0:5.3.3-49.el6Complete!

请记住, 该命令将自动安装与你当前的PHP版本相关的版本(可从命令行获得)。
2.重新启动apache / httpd服务安装扩展程序后, 需要使用以下命令重新启动apache服务:
service httpd restart

【如何在CentOS中安装bcmath扩展】编码愉快!

    推荐阅读