Any ideas?
$soap = New SoapClient($this->wsdl);
$r = $soap->doGoogleSearch(
$this->api_key,
$this->query,
$this->start,
$this->max_per_page,
0,
0,
0,
0,
0,
0
);
return $r; // hash structure
short of doing a recursive try {} catch ($e) {} statement is there any
way to recover or at least debug what the problem is? dumping $e isn't
very informative.