什么是来自asp.net的这段代码? SoapClient的 [英] what is like this code from asp.net? soapclient

查看:97
本文介绍了什么是来自asp.net的这段代码? SoapClient的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个来自asp.net的代码是什么意思? soapclient





$ options = array('login'=>'user','password'=>'pass') ; $ client = new SoapClient('http://sms.host.net/?WSDL',$ options);

$ messageId = $ client-> send('0032323','abc' );

sleep(3);

print($ client-> deliveryStatus($ messageId));

what is like this code from asp.net? soapclient


$options = array('login' => 'user','password' => 'pass'); $client = new SoapClient('http://sms.host.net/?WSDL', $options);
$messageId = $client->send('0032323','abc');
sleep(3);
print ($client->deliveryStatus($messageId));

推荐答案

options = array('login'=>'user','password'=>'pass');
options = array('login' => 'user','password' => 'pass');


client = new SoapClient('http:// sms.host.net/?WSDL',
client = new SoapClient('http://sms.host.net/?WSDL',


options);
options);


这篇关于什么是来自asp.net的这段代码? SoapClient的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆