当前位置:首页 > PHP教程 > php高级应用 > 列表

php SOAP WSDL简单应用实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-08 11:31:38 浏览: 评论:0 

php SOAP WSDL简单应用实例:

  1. <?php 
  2.    $ws = "http://www.phpfensi.com/sd/2001/TemperatureService.wsdl"
  3.    $zipcode = "23590"
  4.    $client = new SoapClient($ws,array('trace' => 1)); 
  5.    $temperature = $client->getTemp($zipcode); 
  6.    //开源代码phpfensi.com 
  7.    echo htmlspecialchars($client->__getLastRequest()); 
  8. ?> 

获取soap发送的数据,代码如下:

  1. <?php 
  2.    $ws = "http://www.phpfensi.com/sd/2001/TemperatureService.wsdl"
  3.    $zipcode = "12312"
  4.    $client = new SoapClient($ws,array('trace' => 1)); 
  5.    $temperature = $client->getTemp($zipcode); 
  6.    echo htmlspecialchars($client->__getLastResponse()); 
  7. ?> 

wdsl应用,代码如下:

  1. <?php 
  2.    $ws = "http://www.phpfensi.com/sd/2001/TemperatureService.wsdl"
  3.    $client = new SoapClient($ws); 
  4.    var_dump($client->__getFunctions()); 
  5. ?> 

Tags: php SOAP WSDL应用实例

分享到: