Home  >  Article  >  php教程  >  php soap 调用获取返回信息

php soap 调用获取返回信息

WBOY
WBOYOriginal
2016-05-25 16:43:11976browse

php soap 调用获取返回信息,trace soap message,获取 soap返回信息,代码如下:

<?php 
   $ws = "http://www.phprm.com/sd/2001/temperatureservice.wsdl"; 
   $zipcode = "23590"; 
   $client = new soapclient($ws,array(&#39;trace&#39; => 1)); 
   $temperature = $client->gettemp($zipcode); 
   echo htmlspecialchars($client->__getlastrequest()); 
?>

得到函数原型从wsd,代码如下:

<?php 
   $ws = "http://www.www.phprm.com/sd/2001/temperatureservice.wsdl"; 
   $client = new soapclient($ws); 
   var_dump($client->__getfunctions()); 
?>
<?php 
   $ws = "http://www.phprm.com/sd/2001/temperatureservice.wsdl"; 
   $zipcode = "12312"; 
   $client = new soapclient($ws,array(&#39;trace&#39; => 1)); 
   $temperature = $client->gettemp($zipcode); 
   echo htmlspecialchars($client->__getlastresponse()); 
?>


本文地址:

转载随意,但请附上文章地址:-)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn