Guest User

Untitled

a guest
Dec 14th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. require dirname(__FILE__).'/csv_stream.php';
  2.  
  3. $c = new CSV('./example.csv', array(), array('header_rows' => 1));
  4.  
  5. print_r($c->fields());
  6. print_r($c->getNextRow());
  7. print_r($c->getNextRow());
  8. print_r($c->getNextRow());
Add Comment
Please, Sign In to add comment