I'm sort of new to PHP, and I need some help on exploding data from a file. The file in question is: http://data.vattastic.com/vatsim-data.txt
Basically, I need to get the data under the !CLIENTS: section (near the bottom). With this data, I need to explode it and get the info between each :.
I have tried with this code, but it gives me a variable offset error (Undefined offset: 3)
$file = file("http://data.vattastic.com/vatsim-data.txt");
foreach($file as $line)
{
$data_record = explode(":", $line);
// grab only the data that has "ATC" in it...
if($data_record[3] == 'ATC' && $data_record[16] != '1' && $data_record[18] != '0'&& stristr($data_record[0],'OBS') === FALSE)
{
rest of code here...
}
}
If someone could help me with this, I'd greatly appreciate it.
var_dump($data_record). The problem is the$data_recorddoesn't have a third position – Gerep Aug 28 '12 at 22:44var_dump($data_record)is returning everything in that datafile. What's the best way to just get the stuff under the!CLIENTS:section? – Dutchcoffee Aug 28 '12 at 22:46explode(":", $line);isn't returning what you expect. You should test$data_recordhas the right number of elements before attempting to access them – peacemaker Aug 28 '12 at 22:46$data_record = explode("!CLIENTS", $line)and work with$data_record[1];) – Gerep Aug 28 '12 at 22:48