Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am reading a CSV file with php. Many of the rows have a "check mark" which is really the square root symbol: √ and the php code is just skipping over this character every time it is encountered.

Here is my code (printing to the browser window in "CSV style" format so I can check that the lines break at the right place:

$file = fopen($uploadfile, 'r');
while (($line = fgetcsv($file)) !== FALSE) {
   foreach ($line as $key => $value) {
    if ($value) {
       echo $value.",";
    }
   }
   echo "<br />";
}
fclose($file);

As an interim solution, I am just finding and replacing the checkmarks with 1's manually, in Excel. Obviously I'd like a more efficient solution :) Thanks for the help!

share|improve this question
I've had plenty of problems using fgetcsv() in the past. When I run into these types of issues I usually start parsing the file manually. =\ – pix0r Sep 24 '09 at 16:48
There are known bugs with fgetcsv() and non-ASCII characters, particularly at the beginning of unquoted values. See also stackoverflow.com/questions/2238971/… – eswald Jan 26 '12 at 20:13

2 Answers

up vote 4 down vote accepted

fgetcsv() only works on standard ASCII characters; so it's probably "correct" in skipping your square root symbols. However, rather than replacing the checkmarks manually, you could read the file into a string, do a str_replace() on those characters, and then parse it using fgetcsv(). You can turn a string into a file pointer (for fgetcsv) thusly:

$fp = fopen('php://memory', 'rw');
fwrite($fp, (string)$string);
rewind($fp);
while (($line = fgetcsv($fp)) !== FALSE)
...
share|improve this answer

I had a similar problem with accented first characters of strings. I eventually gave up on fgetscv and did the following, using fgets() and explode() instead (I'm guessing your csv is comma separated):

$file = fopen($uploadfile, 'r');

while (($the_line = fgets($file)) !== FALSE)  // <-- fgets
{
  $line = explode(',', $the_line);            // <-- explode
  foreach ($line as $key => $value) 
  {
    if ($value) 
    {
      echo $value.",";
    }
  }
  echo "<br />";
}

fclose($file);
share|improve this answer
I have a question about this solution: stackoverflow.com/questions/14836653/… – StiGMaT Feb 12 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.