Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 469 Bytes

0205.md

File metadata and controls

31 lines (24 loc) · 469 Bytes

Which of the following is a valid SOAP client call?

  • A)
$client = new SoapClient("any.wsdl");
  • B)
$client = new SoapClient;
  • C)
$client = new SoapClient(null, array());
  • D)
$client => SoapClient = "any.wsdl";
Answer

Answer: A