]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/file.php
Pseudo bugfix, se agrega el ranking para sumar créditos.
[z.facultad/75.43/tp1.git] / src / lib / file.php
index 2e3b403cbcff2aaab6e9f006397bddf15433a0d2..812cfcc3c2aca80b6e0463e6e133da575c0fc1f2 100644 (file)
@@ -52,7 +52,7 @@ function fgetallcsv($filename, $delim = ',')
 {
     if (($f = fopen($filename, 'r')) === false) return false;
     $data = array();
-    while (!feof($f)) $data[] = fgetcsv($f, 4096, $delim);
+    while ($row = fgetcsv($f, 4096, $delim)) $data[] = $row;
     fclose($f);
     return $data;
 }
@@ -65,7 +65,7 @@ function fgetallcsv($filename, $delim = ',')
  */
 function fsearchcsv($filename, $what, $id = 0, $delim = ',')
 {
-               if (($f = fopen($filename, 'r')) === false) return false;
+    if (($f = fopen($filename, 'r')) === false) return false;
     while (!feof($f))
     {
         $d = fgetcsv($f, 4096);