PHP_Compat::loadFunction()

PHP_Compat::loadFunction() -- Load a function, or an array of functions

Synopsis

require_once 'PHP/Compat.php';

mixed PHP_Compat::loadFunction (mixed $function)

Beschreibung

Loads a function, or an array of functions.

Parameter

mixed $function

The name, or an array of names, of functions to load

Rückgabewert

mixed

TRUE if the function was loaded.
FALSE if the function was not loaded. Either unable to be included or already defined.
If you specified an array of functions to load, an array of TRUE/FALSE values is returned.

Beispiel

You may also load a function without using the class.

Hinweise

Diese Methode sollte statisch aufgerufen werden..