get_required_files

(PHP 4, PHP 5, PHP 7) Alias of get_included_files() This function is an alias of: get_included_files().

getmygid

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Get PHP script owner's GID int getmygid ( void ) Gets the group ID of the current script. Returns: Returns the group ID of the current script, or FALSE on error. See also: getmyuid() - getmypid() - get_current_user() -

get_resources

(PHP 7) Returns active resources array get_resources ([ string $type ] ) Returns an array of all currently active resources, optionally filtered by resource type. Parameters: type If defined, this will cause get_resources() to only return resources of the given type. A list of resource types is available. If the string Unknown is provided as the type, then only resource

getmypid

(PHP 4, PHP 5, PHP 7) Gets PHP's process ID int getmypid ( void ) Gets the current PHP process ID. Returns: Returns the current PHP process ID, or FALSE on error. See also: getmygid() - getmyuid() - get_current_user() - getmyinode()

getlastmod

(PHP 4, PHP 5, PHP 7) Gets time of last page modification int getlastmod ( void ) Gets the time of the last modification of the main script of execution. If you're interested in getting the last modification time of a different file, consider using filemtime(). Returns: Returns the time of the last modification of the current page. The value returned is a Unix timestamp, suitable for feeding to

getenv

(PHP 4, PHP 5, PHP 7) Gets the value of an environment variable string getenv ( string $varname ) Gets the value of an environment variable. You can see a list of all the environmental variables by using phpinfo(). Many of these variables are listed within ยป RFC 3875, specifically section 4.1, "Request Meta-Variables". Parameters: varname The variable name.

getmyinode

(PHP 4, PHP 5, PHP 7) Gets the inode of the current script int getmyinode ( void ) Gets the inode of the current script. Returns: Returns the current script's inode as an integer, or FALSE on error. See also: getmygid() - getmyuid() - getmypid() -

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_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_loaded_extensions

(PHP 4, PHP 5, PHP 7) Returns an array with the names of all modules compiled and loaded array get_loaded_extensions ([ bool $zend_extensions = false ] ) This function returns the names of all the modules compiled and loaded in the PHP interpreter. Parameters: zend_extensions Only return Zend extensions, if not then regular extensions, like mysqli are listed. Defaults to