服务器端方法
function GetTestStr($name) {   
 $simple = "<para><note><bo>simple note</bo></note></para>";
 return $simple;
  
mysql_close($con);
    
}   
客户端方法
$client = new soapclient('http://127.0.0.1/nusoapService.php?wsdl',true);
$client->soap_defencoding = 'UTF-8';
$client->decode_utf8 = false;
$client->xml_encoding = 'UTF-8';
// 参数转为数组形式传递
$paras = array ('name' => 'Bruce Lee123455' );
// 目标方法没有参数时,可省略后面的参数
$client->call ( 'GetTestStr', $paras );
//$document = $client->document;
//echo $document;
$a= $client->call ( 'GetTestStr', $paras );
print_r($a);为什么打印出来是字符串,而标签都省略了    怎么 从服务器端传递给客户端xml格式文件  然后经客户端解析成数组格式进行调用XML