From 5034e3fe8442fcb558225f6c528497227474c9ca Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 10 Mar 2010 13:33:43 -0600 Subject: added docs for Output class property --- user_guide/libraries/output.html | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'user_guide/libraries') diff --git a/user_guide/libraries/output.html b/user_guide/libraries/output.html index 70f0c1f7b..411048088 100644 --- a/user_guide/libraries/output.html +++ b/user_guide/libraries/output.html @@ -137,6 +137,12 @@ at the bottom of your pages for debugging and optimization purposes.

$this->output->cache();

The CodeIgniter output library also controls caching. For more information, please see the caching documentation.

+

Parsing Execution Variables

+ +

CodeIgniter will parse the pseudo-variables {elapsed_time} and {memory_usage} in your output by default. To disable this, set the $parse_exec_vars class property to FALSE in your controller. + + $this->output->parse_exec_vars = FALSE; + -- cgit v1.2.3-24-g4f1b