Created
April 25, 2011 18:20
-
-
Save vyper/940940 to your computer and use it in GitHub Desktop.
PHP: request anonymous object
This file contains 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 | |
$client = new SoapClient('http://personah.cmsw.com.br/Sale/services/Compra?wsdl'); | |
$request = new stdClass; | |
$request->compra = new stdClass; | |
$request->compra->id_cliente = 1; | |
$request->compra->usuario = 'usuario'; | |
$request->compra->... | |
$request->compra->... | |
$request->compra->... | |
$client->requestCompra($request); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment