Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am tauven on github.
  • I am tauven (https://keybase.io/tauven) on keybase.
  • I have a public key ASDN1Alprn5NznaEwS6Kf4ZzAsjZez3eJw9EUQKC2EHhqQo

To claim this, I am signing this object:

@tauven
tauven / csv-format-pure.php
Created June 5, 2011 13:36
Convert a simple CSV File with PHP, list of different possible ways how to reformat a simple csv
<?php
$start = microtime(true);
$fpIn = fopen('input.csv', 'r');
$fpOut = fopen('output-pure.csv', 'w');
while (($row = fgets($fpIn)) !== false)
{
$fields = explode(";", $row);
fwrite($fpOut,