- var_dump: documentation ( source)
<?php
$url = 'https://ri2016.test.msb.se/ri2016.svc?wsdl';
$client = new SoapClient($url,array(
'soap_version' => SOAP_1_1,
'location' => 'https://ri.test.msb.se/RapportServiceWS.svc/basicHttpBinding',
'exceptions' => 1,
'trace' => 1));
var_dump($client->getFunctions());
?>