Skip to content

Instantly share code, notes, and snippets.

@brain90
Created March 25, 2014 04:52
Show Gist options
  • Save brain90/9755436 to your computer and use it in GitHub Desktop.
Save brain90/9755436 to your computer and use it in GitHub Desktop.
<?
function trimSpace($rowFromCSV)
{
$cleanRow = array();
array_walk($rowFromCSV, function ($val, $key) use (&$cleanRow) {
$cleanData[trim($key)] = trim($val);
});
return $cleanRow;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment