header.php

This file is included globally.

Summary
header.phpThis file is included globally.
AuthorJaybill McCarthy
Licensehttp://communit.as/docs/license
Global Methods
__autoloadAutomatically loads a class.
dDump the contents of a variable into the HTTP Response.
ddDump the contents of a variable into the HTTP Response and then end the HTTP Response.

Author

Jaybill McCarthy

Global Methods

__autoload

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.

Arguments

class_nameThe name of the class to load (not a filename).

d

function d($a_var)

Dump the contents of a variable into the HTTP Response.  Stands for “dump”.

Arguments

a_varThe variable to dump into the Response.

See Also

  • Zend_Debug::dump()

dd

function dd($a_var)

Dump the contents of a variable into the HTTP Response and then end the HTTP Response.  Stands for “dump and die”.

Arguments

a_varThe variable to dump into the Response.

See Also

  • Zend_Debug::dump()
  • die()
function __autoload($class_name)
Automatically loads a class.
function d($a_var)
Dump the contents of a variable into the HTTP Response.
function dd($a_var)
Dump the contents of a variable into the HTTP Response and then end the HTTP Response.
Close