小新新2015

导航

 

function sendsms() {
$rtn = "";
$wcfURL = 'http://xxxxxx/SendMessageService.svc?wsdl';
$wcfClient = new SoapClient($wcfURL);
$args = array(
'phoneNumber' => '',
'smsContent' => "",
'signature' => '',
'username' => '',
'password' => ''
);
$rtn = $wcfClient->__soapCall($args);
$rtn = $wcfClient->SendMessage ( $args );

dump($rtn);

}

posted on 2015-10-09 09:25  小新新2015  阅读(252)  评论(0编辑  收藏  举报