Skip to content

Instantly share code, notes, and snippets.

@shouhei
Created March 29, 2016 08:33
Show Gist options
  • Save shouhei/2a9dcb2ea4dd391b5986 to your computer and use it in GitHub Desktop.
Save shouhei/2a9dcb2ea4dd391b5986 to your computer and use it in GitHub Desktop.
phpでcsvを見るやーつ
#!/bin/bash
php -r '$file=new SplFileObject("./hoge.csv");while(!$file->eof()){var_dump($file->fgetcsv());}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment