Created
February 10, 2015 10:23
-
-
Save rodrigopolo/d009299c849a7c973a34 to your computer and use it in GitHub Desktop.
Tasa de Cambio Banco de Guatemala USD Q Banguat
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 | |
// nusoap-0.9.5 | |
require 'lib/nusoap.php'; | |
$client = new nusoap_client('http://www.banguat.gob.gt/variables/ws/TipoCambio.asmx?WSDL', true); | |
$error = $client->getError(); | |
if($error){ | |
echo $error; | |
}else{ | |
$result = $client->call('TipoCambioDia'); | |
print_r($result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment