View Single Post
Join Date: Jun 2008
Posts: 849
Reputation: R0bb0b is on a distinguished road 
Solved Threads: 67
R0bb0b's Avatar
R0bb0b R0bb0b is offline Offline
Practically a Posting Shark

Re: how to delete extra commas on csv file with php

 
0
  #5
Jun 12th, 2008
try just doing this then
  1. foreach($old_lines as $line)
  2. {
  3. $newstring = str_replace(',,,', ',', $line);
  4. //process the string
  5. }
Reply With Quote