_idStack[] = $id; return false; } /** * callback for output buffering * (shouldn't really be called manually) * * @param string $data Buffered output * @return string Data to send to browser */ public function _flush($data) { $id = array_pop($this->_idStack); if (is_null($id)) { Zend_Cache::throwException('use of end() without a start()'); } $this->save($data, $id, $this->_tags); return $data; } }