博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
soap 简单的例子
阅读量:7073 次
发布时间:2019-06-28

本文共 542 字,大约阅读时间需要 1 分钟。

首先确保你的soap模块开启

客户端代码

"http://192.168.10.111/test/soap/serverSoap.php",'uri' => "http://127.0.0.1/") ); echo $client->minus_func(100,99);} catch (SoapFault $fault){ echo "Error: ",$fault->faultcode,", string: ",$fault->faultstring;}?>

服务器端代码

"http://192.168.10.111/"));//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;}?>

 

转载地址:http://tkuml.baihongyu.com/

你可能感兴趣的文章