linux+php 增加SOAP扩展,求卸载模块扩展怎么做

linux+php 增加SOAP扩展,求卸载模块扩展怎么做,第1张

linux和windows不一样的,你一定要从windows的习惯模式里走出来。

php.ini 里把extension = soap.so注释掉即可。重启apache服务

-------------

如果不放心

删掉soap.so

cd soap目录

make clean

这就相当干净了

使用php 设置soapHeader时要如下进行,不然发出去的包会变成类似“<item><key>user</key><value>23107720</value></item>”的格式:  $auth_header = array( 'user'=>$key, 'password'=>$pwd ) // 下面的RequestSOAPHeader 对应 wsdl 定义里面的 <xsd:element name="RequestSOAPHeader">..... $authvalues = new SoapVar($auth_header, SOAP_ENC_OBJECT,"RequestSOAPHeader",$uri)$header = new SoapHeader($uri, 'RequestSOAPHeader', $authvalues)$api = new SoapClient(null,$options)$api->__setSoapHeaders(array($header))不明白的话可以去后盾人看看相关的教学视频。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11337159.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存