2012-12-02 50 views
0
<?php 
    $client = new SoapClient("http://localhost:8080/calculator?wsdl"); 
    $result = $client->add(3,3); 

    echo $result; 

?> 

四處錯誤:如何輸出SoapClient返回的對象值?

Object of class stdClass could not be converted to string

我怎樣才能打印出從SoapClient反應?

回答

1

結果是一個stdClass對象。你可以在 「打印」 使用的print_r這是一個實用工具,您可以用它來檢查對象的成員對象:

print_r($result);