怎样安装PHP的xmlrpc扩展

2018年9月29日 | 分类: 【技术】

【安装】

下载 php 源码包并解压:

wget http://php.net/distributions/php-7.3.22.tar.xz && tar -xvf php-7.3.22.tar.xz && cd php-7.3.22

进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择xmlrpc模块。

cd ext/xmlrpc && /usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

输出:

Installing shared extensions:     /usr/local/php/lib/php/extensions/no-debug-zts-20180731/

【设置】

在 php.ini 文件中添加:

; [xmlrpc]
extension = "xmlrpc.so"

然后重启即可加载。

【参考】

参考:https://bbs.csdn.net/topics/340269102
参考:https://timhbw.com/86.html
参考:https://www.awaimai.com/2120.html