get_required_files

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

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

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.

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

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() -

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() -

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()

getmyuid

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

getopt

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Gets options from the command line argument list array getopt ( string $options [, array $longopts ] ) Parses options passed to the script. Parameters: options Each character in this string will be used as option characters and matched against options passed to the script starting with a single hyphen (-). For example, an option string

getrusage

(PHP 4, PHP 5, PHP 7) Gets the current resource usages array getrusage ([ int $who = 0 ] ) This is an interface to getrusage(2). It gets data returned from the system call. Parameters: who If who is 1, getrusage will be called with RUSAGE_CHILDREN. Returns: Returns an associative array containing the data returned from the system call. All entri