Properties

$final_output

$final_output : string

Final output string

Type

string

$cache_expiration

$cache_expiration : integer

Cache expiration time

Type

integer

$headers

$headers : array

List of server headers

Type

array

$mimes

$mimes : array

List of mime types

Type

array

$enable_profiler

$enable_profiler : boolean

Enable Profiler flag

Type

boolean

$parse_exec_vars

$parse_exec_vars : boolean

Parse markers flag

Whether or not to parse variables like {elapsed_time} and {memory_usage}.

Type

boolean

$mime_type

$mime_type : string

Mime-type for the current page

Type

string

$_zlib_oc

$_zlib_oc : boolean

php.ini zlib.output_compression flag

Type

boolean

$_compress_output

$_compress_output : boolean

CI output compression flag

Type

boolean

$_profiler_sections

$_profiler_sections : array

List of profiler sections

Type

array

$func_overload

$func_overload : boolean

mbstring.func_overload flag

Type

boolean

Methods

__construct()

__construct() : void

Class constructor

Determines whether zLib output compression will be used.

get_output()

get_output() : string

Get Output

Returns the current output string.

Returns

string

set_output()

set_output(string  $output) : \CI_Output

Set Output

Sets the output string.

Parameters

string $output

Output data

Returns

\CI_Output

append_output()

append_output(string  $output) : \CI_Output

Append Output

Appends data onto the output string.

Parameters

string $output

Data to append

Returns

\CI_Output

set_header()

set_header(string  $header, boolean  $replace = TRUE) : \CI_Output

Set Header

Lets you set a server header which will be sent with the final output.

Note: If a file is cached, headers will not be sent.

Parameters

string $header

Header

boolean $replace

Whether to replace the old header value, if already set

Returns

\CI_Output

set_content_type()

set_content_type(string  $mime_type, string  $charset = NULL) : \CI_Output

Set Content-Type Header

Parameters

string $mime_type

Extension of the file we're outputting

string $charset

Character set (default: NULL)

Returns

\CI_Output

get_content_type()

get_content_type() : string

Get Current Content-Type Header

Returns

string —

'text/html', if not already set

get_header()

get_header(string  $header) : string

Get Header

Parameters

string $header

Returns

string

set_status_header()

set_status_header(integer  $code = 200, string  $text = '') : \CI_Output

Set HTTP Status Header

As of version 1.7.2, this is an alias for common function set_status_header().

Parameters

integer $code

Status code (default: 200)

string $text

Optional message

Returns

\CI_Output

enable_profiler()

enable_profiler(boolean  $val = TRUE) : \CI_Output

Enable/disable Profiler

Parameters

boolean $val

TRUE to enable or FALSE to disable

Returns

\CI_Output

set_profiler_sections()

set_profiler_sections(array  $sections) : \CI_Output

Set Profiler Sections

Allows override of default/config settings for Profiler section display.

Parameters

array $sections

Profiler sections

Returns

\CI_Output

cache()

cache(integer  $time) : \CI_Output

Set Cache

Parameters

integer $time

Cache expiration time in minutes

Returns

\CI_Output

_display()

_display(string  $output = NULL) : void

Display Output

Processes and sends finalized output data to the browser along with any server headers and profile data. It also stops benchmark timers so the page rendering speed and memory usage can be shown.

Note: All "view" data is automatically put into $this->final_output by controller class.

Parameters

string $output

Output data override

_write_cache()

_write_cache(string  $output) : void

Write Cache

Parameters

string $output

Output data to cache

_display_cache()

_display_cache(  $CFG,   $URI) : boolean

Update/serve cached output

Parameters

$CFG
$URI

Returns

boolean —

TRUE on success or FALSE on failure

delete_cache()

delete_cache(string  $uri = '') : boolean

Delete cache

Parameters

string $uri

URI string

Returns

boolean

set_cache_header()

set_cache_header(integer  $last_modified, integer  $expiration) : void

Set Cache Header

Set the HTTP headers to match the server-side file cache settings in order to reduce bandwidth.

Parameters

integer $last_modified

Timestamp of when the page was last modified

integer $expiration

Timestamp of when should the requested page expire from cache

strlen()

strlen(string  $str) : integer

Byte-safe strlen()

Parameters

string $str

Returns

integer

substr()

substr(string  $str, integer  $start, integer  $length = NULL) : string

Byte-safe substr()

Parameters

string $str
integer $start
integer $length

Returns

string