Yes, I just added an XML feed, and to access it, get your VA central page, and add /xml to the end of the URL:
IE:
http://www.vacentral.net/airline/cva_canadianvirtualairlines/xml
Then you can call it in phpVMS:
<?php
$cws = new CodonWebService();
$xml = $cws->get('YOUR VACENTRAL XML URL');
$xml = simplexml_load_string($xml);
echo "Our airline's rank is {$xml->rank}";
?>
Moving this to code snippets...