get_included_files

(PHP 4, PHP 5, PHP 7) Returns an array with the names of included or required files array get_included_files ( void ) Gets the names of all files that have been included using include, include_once, require or require_once. Returns: Returns an array of the names of all files. The script originally called is considered an "included file," so it will be listed together with the files referenced by

get_include_path

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Gets the current include_path configuration option string get_include_path ( void ) Gets the current include_path configuration option value. Returns: Returns the path, as a string. Examples: get_include_path() example <?php // Works as of PHP 4.3.0 echo get_include_path(); // Works i

get_extension_funcs

(PHP 4, PHP 5, PHP 7) Returns an array with the names of the functions of a module array get_extension_funcs ( string $module_name ) This function returns the names of all the functions defined in the module indicated by module_name. Parameters: module_name The module name. Note: This parameter must be in lowercase. Returns: Returns an array

get_defined_constants

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Returns an associative array with the names of all the constants and their values array get_defined_constants ([ bool $categorize = false ] ) 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. Parameters: categorize Causing th

get_current_user

(PHP 4, PHP 5, PHP 7) Gets the name of the owner of the current PHP script string get_current_user ( void ) Returns the name of the owner of the current PHP script. Returns: Returns the username as a string. Examples: get_current_user() example <?php echo 'Current script owner: ' . get_current_user(); ?> The abov

get_cfg_var

(PHP 4, PHP 5, PHP 7) Gets the value of a PHP configuration option string get_cfg_var ( string $option ) Gets the value of a PHP configuration option. This function will not return configuration information set when the PHP was compiled, or read from an Apache configuration file. To check whether the system is using a configuration file, try retrieving the value of the cfg_file_path configuration setting. If this is avai

gc_mem_caches

(PHP 7) Reclaims memory used by the Zend Engine memory manager int gc_mem_caches ( void ) Reclaims memory used by the Zend Engine memory manager. Returns: Returns the number of bytes freed. See also: Garbage Collection -

gc_enabled

(PHP 5 >= 5.3.0, PHP 7) Returns status of the circular reference collector bool gc_enabled ( void ) Returns status of the circular reference collector. Returns: Returns TRUE if the garbage collector is enabled, FALSE otherwise. Examples: A gc_enabled() example <?php if(gc_enabled()) gc_collect_cycles(); ?>

gc_enable

(PHP 5 >= 5.3.0, PHP 7) Activates the circular reference collector void gc_enable ( void ) Activates the circular reference collector, setting zend.enable_gc to 1. Returns: No value is returned. See also: Garbage Collection -

gc_disable

(PHP 5 >= 5.3.0, PHP 7) Deactivates the circular reference collector void gc_disable ( void ) Deactivates the circular reference collector, setting zend.enable_gc to 0. Returns: No value is returned. See also: Garbage Collection -