![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
|||||||||||
get_defined_constants(PHP 4 >= 4.1.0, PHP 5) get_defined_constants -- Returns an associative array with the names of all the constants and their valuesDescriptionarray 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:
will print a list like:
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.
The above example will output something similar to:
See also defined(), get_loaded_extensions(), get_defined_functions(), and get_defined_vars(). Copyright © 1997 - 2007 by the PHP Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later. A copy of the Open Publication License is distributed with this manual, the latest version is presently available at http://www.opencontent.org/openpub/. Please see full copyright text at http://www.php.net/manual/en/copyright.php Original version of the above documentation is available at http://www.php.net/manual/en/ |
|