Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created July 11, 2012 04:14
Show Gist options
  • Save pedroelsner/3087925 to your computer and use it in GitHub Desktop.
Save pedroelsner/3087925 to your computer and use it in GitHub Desktop.
<?php
try{
$webservice = new novw_webservice();
$result = $webservice->LerCadastro(array('cpf' => '000.000.000-00'));
unset($webservice);
} catch (exception $e) {
wp_redirect(home_url() . '/error?description=' . $e->faultstring);
exit();
}
echo $result->LerCadastroResult->NOME;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment