Description
array
get_defined_constants ( [mixed categorize] )
This function returns the names and values of all the constants
currently defined. This includes those created by extensions as
well as those created with the define()
function.
For example the line below:
As of PHP 5, an additional parameter, categorize,
may be passed, causing this function to return a multi-dimensional array
with categories in the keys of the first dimension and
constants and their values in the second dimension.
Note:
The value of the categorize parameter is irrelevant,
only its presence is considered.
See also
defined(),
get_loaded_extensions(),
get_defined_functions(), and
get_defined_vars().