码迷,mamicode.com
首页 > Web开发 > 详细

PHP SOAP 使用示例

时间:2014-07-07 10:59:59      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   使用   

soap_client.php

    <?php  
    try {  
        $client = new SoapClient(  
            null,  
            array(‘location‘ =>"http://localhost/soap_server.php",‘uri‘=>"http://test-uri")  
        );  
        echo $client->getVar();  
      
    } catch (SoapFault $fault){  
        echo "Error: ".$fault->faultcode."<br/> String: ".$fault->faultstring;  
    }  

soap_server.php

    <?php  
    $soap = new SoapServer(null,array(‘uri‘=>"http://test-uri"));  
    $soap->setClass(‘MyClass‘);  
    $soap->handle();  
    class MyClass {  
        public $var = ‘Hello‘;  
        function getVar() {  
            return xmlrpc_encode($this->var);  
        }  
    }  
    ?>  

 

PHP SOAP 使用示例,布布扣,bubuko.com

PHP SOAP 使用示例

标签:style   blog   http   java   color   使用   

原文地址:http://www.cnblogs.com/syphper/p/3820352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!