createFileName() . "\n"; echo "Content:\n" . $this->header(); break; //No verbose } } public function close() { echo $this->footer(true); } public function appendData($data) { if ($this->appendToBuffer) { $this->buffer .= $data; return; } if ($this->flags & Render::CLOSE) { echo $data; echo $this->footer(); $this->flags ^= Render::CLOSE; } elseif ($this->flags & Render::OPEN) { echo $data."
"; $this->flags ^= Render::OPEN; } else { echo $data; } } }