常用扩展可以使用php-pear来安装,但是php自带的扩展并不行,例如'curl' 'sysvchm'

#获取php-config路径
#whereis php-config

cd <php编译文件目录>/ext/curl/

phpize

./cinfigure -with-php-config=<php-config路径>

make && make install

cp module/curl.so <php扩展目录>

重启php进程