Skip to content

Instantly share code, notes, and snippets.

@javierwilson
Created March 2, 2012 17:58
Show Gist options
  • Save javierwilson/1960058 to your computer and use it in GitHub Desktop.
Save javierwilson/1960058 to your computer and use it in GitHub Desktop.
ejemplo de consulta soap usando SoapClient
<?php
$WSDL = 'http://example.com/?wsdl';
$client = new SoapClient( $WSDL );
$res = $client->consultaServicios(array('movil'=>'55555555', 'pass'=>'***'));
print_r($res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment