Which of the following are valid SoapClient calls? (Choose 2)
$client = new SoapClient("weather.wsdl");
$client = new SoapClient;
$client = new SoapClient(null, array("location" =>
"http://example.com/weather ", "uri" => "http://test-uri.com/ "));
$client = new SoapClient(null, array());
Submit