Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. //read csv file and retrieve
  2.  
  3. $csv = array_map('str_getcsv', file('tag.csv'));
  4. foreach ($csv as $key) {
  5. echo '<pre>';
  6. print_r($key);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement