1、确定php版本,下载php源码:http://php.net/releases/
本地下载,上传服务器:
scp php-5.3.27.tar.gz root@xxx.xxx.xx.xxx:/
2、服务器解压php,安装soap扩展
tar xvf php-5.3.27.tar.gz php-5.3.27
cd php-5.3.27
cd ext/soap/
/www/wdlinux/php/bin/phpize
./configure --with-php-config=/www/wdlinux/php/bin/php-config --enable-soap
make install
然后我们在PHP.INI文件添加文件代码:
重启服务extension=/www/wdlinux/apache_php-5.3.27/lib/php/extensions/no-debug-non-zts-20090626/soap.so
参考:http://www.itbulu.com/wdcp-soap.html