欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php-各位大虾们,帮帮忙吧!不知道错在哪里?

程序员文章站 2022-04-15 11:45:28
...
php参数传递webservice

addclass.php
class addclass{

public function add($x,$y){return $x+$y;}

}
server.php

require "addclass.php";
$soap = new SoapServer('test.wsdl');
$soap->setClass("addclass");
$soap->handle();
?>
client.php
try{
$client = new SoapClient("test.wsdl");
echo $client->add(7,8);
//echo $client->__soapCall("add", array(7, 8));

}catch (SoapFault $e){
echo $e;
}
?>