0
<?php
$client = new SoapClient("http://localhost:8080/calculator?wsdl");
$result = $client->add(3,3);
echo $result;
?>
Object of class stdClass could not be converted to string
我怎樣才能打印出從SoapClient
反應?