Heim  >  Artikel  >  php教程  >  PHP中soap的用法实例

PHP中soap的用法实例

WBOY
WBOYOriginal
2016-06-06 20:18:291141Durchsuche

这篇文章主要介绍了PHP中soap的用法,实例讲述了PHP使用soap的两种方式,具有一定的参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP中soap的用法,,分享给大家供大家参考。具体用法分析如下:

PHP 使用soap有两种方式。

一、用wsdl文件

服务器端:

复制代码 代码如下:

class service
{
  public function HelloWorld()
   {
      return  "Hello";
   }
  public  function Add($a,$b)
   {
      return $a+$b;
   }
}
$server=new SoapServer('soap.wsdl',array('soap_version' => SOAP_1_2));
$server->setClass("service");
$server->handle();
?>


资源描述文件,可以用工具(zend studio)生成。其实就是一个xml文件。

复制代码 代码如下:



 
   
     
       
         
           
         

       

     

     
       
         
           
         

       

     

     
       
        
         
        

       

     

     
       
        

         
        
       
     
   
 
       
   
 

 
   
 

      
     
     
   

 

 
        transport="http://schemas.xmlsoap.org/soap/http" />
   
    
    
    
            namespace="http://localhost/interface/" />
    

   

 

 
   
     


   
 


客户端调用:

复制代码 代码如下:

$soap = new SoapClient('http://localhost/interface/soap.wsdl');
echo $soap->Add(1,2);
?>


二、不用wsdl文件

服务器端:

复制代码 代码如下:

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn