Skip to content

Instantly share code, notes, and snippets.

@calebklc
Created March 3, 2017 06:56
Show Gist options
  • Save calebklc/e138af3922b3719641df2a166f5e91ba to your computer and use it in GitHub Desktop.
Save calebklc/e138af3922b3719641df2a166f5e91ba to your computer and use it in GitHub Desktop.
Get xml data from url
<?php
$url = 'Your url';
$xml = simplexml_load_file($url);
// Example
var_dump($xml->stationList->station[0]->no);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment