本文共 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/