Skip to content

Instantly share code, notes, and snippets.

@diegomengarda
Last active July 23, 2018 01:34
Show Gist options
  • Save diegomengarda/36b7697ecdb9c7cc6246c58eefef6ad6 to your computer and use it in GitHub Desktop.
Save diegomengarda/36b7697ecdb9c7cc6246c58eefef6ad6 to your computer and use it in GitHub Desktop.
<?php
$clientSOAP = new SoapClient('http://urlsoap');
$function = 'MetodoChamado';
$arguments = [
'Cpf' => '99999999999'
];
$response = $clientSOAP->__soapCall($function, $arguments);
echo 'Response: ';
echo '<pre>';
print_r($response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment