webservices.xml.com: Creating and Consuming Web Services With PHP
Windows XP における SOAP クライアント概要
require_once('lib/nusoap.php'); 
$wsdl="http://www.xmethods.net/sd/CurrencyExchangeService.wsdl";
$client=new nusoapclient($wsdl, 'wsdl'); 
//soapclientはPHP5以降エラーになるので名前を変えた
$param=array(
'country1'=>'japan',
'country2'=>'usa'
); 
echo $client->call('getRate', $param);