Last active
July 23, 2018 01:34
-
-
Save diegomengarda/36b7697ecdb9c7cc6246c58eefef6ad6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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