$final_output
$final_output : string
Current output string
Output Class
Responsible for sending final output to browser
set_header( $header, $replace = TRUE) : void
Set Header
Lets you set a server header which will be outputted with the final display.
Note: If a file is cached, headers will not be sent. We need to figure out how to permit header data to be saved with the cache data...
$header | ||
$replace |
_display( $output = '') : mixed
Display Output
All "view" data is automatically put into this variable by the controller class:
$this->final_output
This function sends the finalized output data to the browser along with any server headers and profile data. It also stops the benchmark timer so the page rendering speed and memory usage can be shown.
$output |