]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Item.php
Se muestra el apellido (como pide el enunciado) en vez de nombre.
[z.facultad/75.43/tp1.git] / src / lib / Item.php
index 550b26e6c661dcb7a0149b3f9c74a1b64e4acae7..8dea6e93cc412e3293afb0211c9bc807e77bca46 100644 (file)
@@ -30,6 +30,13 @@ class Item
         return "NO IMPLEMENTADO";
     }
 
+    // Carga en el objeto el próximo ítem disponible.
+    function seek($pos)
+    {
+        trigger_error("NO IMPLEMENTADO!!!", E_USER_WARNING);
+        return false;
+    }
+
     // Carga en el objeto el próximo ítem disponible.
     function next()
     {
@@ -54,7 +61,11 @@ class Item
     function asArray()
     {
         $arr = array();
-        foreach ($this->campos as $campo) $arr[] = $this->$campo;
+        foreach ($this->campos as $campo)
+        {
+            $campo = strtolower($campo);
+            $arr[] = $this->$campo;
+        }
         return $arr;
     }