Advertisement
Guest User

Untitled

a guest
Mar 17th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. $options = array(
  4.                  'trace' => true,
  5.                  'exceptions' => 0,
  6.                  'login' => 'hidden',
  7.                  'password' => 'hidden',
  8.                  );
  9. $client = new SoapClient('http://flightxml.flightaware.com/soap/FlightXML2/wsdl', $options);
  10.  
  11. // get the weather.
  12. $params = array("AllAirports");
  13. $result = $client->AllAirports($params);
  14. print_r($result);
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement