Home >Backend Development >PHP Tutorial >Introduction to the method of PHP outputting all variables and constants of the current process
2. get_defined_functions (PHP 4 >= 4.0.4, PHP 5) — Get all defined functions array get_defined_functions (void) //void means empty and does not require any parameters
3. get_loaded_extensions (PHP 4, PHP 5) — Get all available modules
4. get_extension_funcs (PHP 4, PHP 5) — Get the available functions of the specified module array get_extension_funcs (string $module_name) This function returns all available functions of the specified module. The parameters passed in (module names) must be lowercase
5. get_defined_constants (PHP 4 >= 4.1.0, PHP 5) — Get the names of all constants in an associative array and their values array get_defined_constants ([ bool $categorize = false ] )
6. get_declared_classes (PHP 4, PHP 5) — Get an array consisting of the names of defined classes array get_declared_classes ( void )
|