您好,欢迎访问一九零五行业门户网

PHP webservice实例_PHP教程

首先大家要简单了解了何谓webservice,接下来就做两个非常简单的例子,webservice还是逃不开server端与client端。
我测试的环境为:apache2.2.11 php5.2.10
做这个测试之前,要确认你的php配置文件中已经将soap扩展打开,即extension=php_soap.dll;
ok 现在我们来体验webservice
//server端serversoap.php
$soap = new soapserver(null,array('uri'=>http://192.168.1.179/));//this uri is your server ip.
$soap->addfunction('minus_func');                                                 //register the function
$soap->addfunction(soap_functions_all);
$soap->handle();
function minus_func($i, $j){
    $res = $i - $j;
    return $res;
}
//client端clientsoap.php
try {
    $client = new soapclient(null,
        array('location' =>http://192.168.1.179/test/serversoap.php,'uri' => http://127.0.0.1/)
    );
    echo $client->minus_func(100,99);
} catch (soapfault $fault){
    echo error: ,$fault->faultcode,, string: ,$fault->faultstring;
}
这是客户端调用服务器端函数的例子,我们再搞个class的。
//www.2cto.com server端serversoap.php
$classexample = array();
$soap = new soapserver(null,array('uri'=>http://192.168.1.179/,'classexample'=>$classexample));
$soap->setclass('chesterclass');
$soap->handle();
class chesterclass {
    public $name = 'chester';
function getname() {
        return $this->name;
    }
}
//client端clientsoap.php
try {
    $client = new soapclient(null,
        array('location' =>http://192.168.1.179/test/serversoap.php,'uri' => http://127.0.0.1/)
    );
    echo $client->getname();
} catch (soapfault $fault){
    echo error: ,$fault->faultcode,, string: ,$fault->faultstring;
}
作者 狐狸大侠
http://www.bkjia.com/phpjc/478417.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/478417.htmltecharticle首先大家要简单了解了何谓webservice,接下来就做两个非常简单的例子,webservice还是逃不开server端与client端。 我测试的环境为:apache2.2.11...
其它类似信息

推荐信息