]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/file.php
Se implementan los métodos nuevos de Item.
[z.facultad/75.43/tp1.git] / src / lib / file.php
index 4b967698769dc702e8ad82eb123526f764a10724..2e3b403cbcff2aaab6e9f006397bddf15433a0d2 100644 (file)
@@ -30,6 +30,19 @@ if (!function_exists('fputcsv')) {
     }
 }
 
+/**
+ * Agrega una entrada al final de un archivo csv.
+ *
+ * @return bool false si hay error.
+ */
+function fappendcsv($filename, $fields, $delim = ',')
+{
+    if (($f = fopen($filename, 'a')) === false) return false; // error
+    fputcsv($f, $fields, $delim);
+    fclose($f);
+    return true;
+}
+
 /**
  * Obtiene un archivo csv como array de arrays
  *
@@ -52,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);