index.php
服务端代码'textphpwebservice','soap_version'=>SOAP_1_2));$wbServer->addFunction('sayhello');$wbServer->addFunction('mymin');$wbServer->handle();function sayhello($name){return "hello ".$name."you are great!"; }function mymin($a,$b){return $a>$b?$b:$a;}
client.php
客户端代码'http://demo.web.com/index.php','uri'=>'textphpwebservice'));echo $client->sayhello("lijh")."";echo $client->mymin(100,50)."ccccc";}catch(SoapFault $fault){echo "fail";}die();