Der Code sieht folgendermaßen aus.
jetzt bekomme ich aber Object id#2 raus. Anstatt das, wenn ich statt
das hier benutze
da steht dann all das da, was ich brauche. wie komme ich da ran? Wenn ich es als String würde es mir schon reichen...
gruß
Thorsten
PHP:
$d_aParam = array(array("CityName"=>$Stadt,"CountryName"=>$Land));
$Client = new soapclient("http://www.webservicex.net/globalweather.asmx?wsdl");
$Client->__getFunctions();
echo $Client->__call("GetWeather", $d_aParam);
jetzt bekomme ich aber Object id#2 raus. Anstatt das, wenn ich statt
PHP:
echo $Client->__call("GetWeather", $d_aParam);
PHP:
print_r($Client->__call("GetWeather", $d_aParam));
da steht dann all das da, was ich brauche. wie komme ich da ran? Wenn ich es als String würde es mir schon reichen...
gruß
Thorsten