]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/file.php
Se muestra el apellido (como pide el enunciado) en vez de nombre.
[z.facultad/75.43/tp1.git] / src / lib / file.php
index 4b967698769dc702e8ad82eb123526f764a10724..ab50b24b4160581e1e504262b179d1687471d4e0 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
  *