API15:JCacheOutput/end
From Joomla! Documentation
Description
Stop the cache buffer and store the cached data
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
end()
Returns
boolean True if cache stored
Defined in
libraries/joomla/cache/handler/output.php
Importing
jimport( 'joomla.cache.handler.output' );
Source Body
function end()
{
// Get data from output buffer and echo it
$data = ob_get_contents();
ob_end_clean();
echo $data;
// Get id and group and reset them placeholders
$id = $this->_id;
$group = $this->_group;
$this->_id = null;
$this->_group = null;
// Get the storage handler and store the cached data
$this->store($data, $id, $group);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples