Advertisement
revs01

VinVerify REVS Check

Mar 6th, 2024
57
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. //VinVerify REVS Check
  3. $client = new SoapClient("https://vinverify.com.au");
  4. var_dump($client->__getFunctions());
  5. var_dump($client->__getTypes());
  6. And here is the output it generates:
  7.  
  8. array(
  9. [0] => "REVScheck Function1(FirstFunction $parameters)",
  10. [1] => "VinChek Function2(SecondFunction $parameters)",
  11. );
  12.  
  13. array(
  14. [0] => struct Contact {
  15. id id;
  16. name name;
  17. }
  18. [1] => string "VIN ID"
  19. [2] => string "2 dollar only"
  20. }
  21. ?>
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement