Habari\RawPHPEngine::append PHP Method

append() public method

Appends to an existing variable more values
public append ( $key, $value = '' )
    public function append($key, $value = '')
    {
        if (!isset($this->engine_vars[$key])) {
            $this->engine_vars[$key][] = $value;
        } else {
            $this->engine_vars[$key] = $value;
        }
    }