Created
November 7, 2019 07:54
-
-
Save olssonm/47e01550c296801d177a16787d1476eb to your computer and use it in GitHub Desktop.
Quick way to parse a CSV-file exported from Apple Numbers (using default UTF-8 formatting).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$data = array_map(function($v) { | |
return str_getcsv($v, ";"); | |
}, file($file)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment