GIF89a;
object; } /** * Enables an easy to use key/value pushing to the data object. * @author Bobby Allen (ballen@bobbyallen.me) * @param string $name The name of the key. * @param string $value The value of the key. */ public function addItemValue($name, $value) { $this->array_push_associative($this->object, array("$name" => "$value")); } /** * Returns an associated array (data object) * @author Bobby Allen (ballen@bobbyallen.me) * @return array The dataobject contents. */ public function getDataObject() { return $this->object; } /** * Returns a named data object record value. * @author Bobby Allen (ballen@bobbyallen.me) * @param string $name The name of the data record (key) to return from the current object. * @return string The value. */ public function getDataRecord($name) { return $this->object[$name]; } } ?>