&$value) { $this->$name = $value; } } // -------------------------------------------------------------------------- /** * Allow calling of array methods on the object and * dynamic methods * * @param string $name * @param array $params * @return mixed */ public function __call($name, $params = []) { // Allow array operations on the object if (substr($name, 0, 6) === 'array_' && is_callable($name)) { $args = array_merge($this->getArrayCopy(), $args); return call_user_func_array($name, $args); } // Allow dynamic method calls if (is_callable($this->$name)) { //Call the dynamic function return call_user_func_array($this->$name, $params); } } } // End of MM.php