Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

get_include_path(3) [php man page]

GET_INCLUDE_PATH(3)							 1						       GET_INCLUDE_PATH(3)

get_include_path - Gets the current include_path configuration option

SYNOPSIS
string get_include_path (void ) DESCRIPTION
Gets the current include_path configuration option value. RETURN VALUES
Returns the path, as a string. EXAMPLES
Example #1 get_include_path(3) example <?php // Works as of PHP 4.3.0 echo get_include_path(); // Works in all PHP versions echo ini_get('include_path'); ?> SEE ALSO
ini_get(3), restore_include_path(3), set_include_path(3), include(3). PHP Documentation Group GET_INCLUDE_PATH(3)

Check Out this Related Man Page

GET_CFG_VAR(3)								 1							    GET_CFG_VAR(3)

get_cfg_var - Gets the value of a PHP configuration option

SYNOPSIS
string get_cfg_var (string $option) DESCRIPTION
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 available, a configuration file is being used. PARAMETERS
o $option - The configuration option name. RETURN VALUES
Returns the current value of the PHP configuration variable specified by $option, or FALSE if an error occurs. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | get_cfg_var(3) was fixed to be able to return | | | "array" ini options. | | | | +--------+---------------------------------------------------+ SEE ALSO
ini_get(3), ini_get_all(3). PHP Documentation Group GET_CFG_VAR(3)
Man Page