Skip to content

Instantly share code, notes, and snippets.

View af0b9b's full-sized avatar
🏠
Working from home

af0b1 af0b9b

🏠
Working from home
View GitHub Profile
@af0b9b
af0b9b / parse_austria.php
Created March 20, 2019 13:31 — forked from geek-at/parse_austria.php
Parsing ip data from a file
<?php
$infile = 'austria.csv';
$outfile = 'austria.ips';
$fp = fopen($outfile,'w');
$handle = fopen($infile, "r");
if ($handle)
{
while (($line = fgets($handle)) !== false) {
$line = trim($line);