This file is included globally.
| header.php | This file is included globally. |
| Author | Jaybill McCarthy |
| License | http://communit.as/docs/license |
| Global Methods | |
| __autoload | Automatically loads a class. |
| d | Dump the contents of a variable into the HTTP Response. |
| dd | Dump the contents of a variable into the HTTP Response and then end the HTTP Response. |
function __autoload( $class_name )
Automatically loads a class. Tries several techniques, including require_once() and Zend_Loader::loadClass(). If it fails to load the class using the attempted methods, an error is displayed and the Response is ended.
| class_name | The name of the class to load (not a filename). |
Automatically loads a class.
function __autoload( $class_name )
Dump the contents of a variable into the HTTP Response.
function d( $a_var )
Dump the contents of a variable into the HTTP Response and then end the HTTP Response.
function dd( $a_var )