首页 > Web开发 > 详细

PHP SOAP 使用示例

时间:2014-07-07 10:58:56      阅读:446      评论:0      收藏:0      [点我收藏+]

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 使用示例

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!