当前位置:Gxlcms > PHP教程 > phpwebservicesoap简单实例

phpwebservicesoap简单实例

时间:2021-07-01 10:21:17 帮助过:25人阅读

php webservice soap简单实例

接触PHP已经多年,可是对webService一直不太了解,最近公司要做要用PHP做一个接口,是在考虑用webService还是直接用HTTP请求,所以这两天也看了不少有关webService方面的资料

下面是一个小实例

action.php文件内容

  

service.php文件内容

setClass('Action');  
$server->handle();  
?> 

action.wsdl文件内容

 
 
 
     
         
         
     
     
         
     
 
     
         
             
                Enter description here...  
             
             
             
         
     
     
         
         
             
             
                 
             
             
                 
             
         
     
     
         
               
         
     
 

index.php文件内容

total(22,1);  
echo $result;  
?>  

其中index.php为调用接口的文件,service.php为接口的服务文件,运行index.php就可以直接得到接口返回的值

人气教程排行