php 安装扩展

php有两种安装方式,自动安装 yum install php 
这种安装扩展方式直接 yum install php-pdo

源码安装的php,扩展也是需要编译安装的

进入到源码ext 对应的目录,

phpize
./configure
make
make install 

安装

原文地址:https://www.cnblogs.com/a531248552/p/13398985.html