Unix and Linux Discussions Tagged with option |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
3,336 |
Shell Programming and Scripting |
|
|
|
2 |
1,431 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,123 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,848 |
Shell Programming and Scripting |
|
|
|
5 |
13,456 |
Shell Programming and Scripting |
|
|
|
3 |
84,892 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,073 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
4,986 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
2,928 |
Shell Programming and Scripting |
|
|
|
1 |
4,691 |
Programming |
|
|
|
1 |
3,261 |
Shell Programming and Scripting |
|
|
|
0 |
3,157 |
Shell Programming and Scripting |
|
|
|
0 |
3,807 |
Shell Programming and Scripting |
|
|
|
0 |
3,807 |
Programming |
|
|
|
5 |
3,054 |
Shell Programming and Scripting |
|
|
|
0 |
5,557 |
Solaris |
|
|
|
3 |
1,658 |
Shell Programming and Scripting |
|
|
|
2 |
6,603 |
SCO |
|
|
|
2 |
7,458 |
Cybersecurity |
|
|
|
7 |
17,037 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
7,396 |
Shell Programming and Scripting |
|
|
|
4 |
5,129 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,091 |
Shell Programming and Scripting |
|
|
|
3 |
3,293 |
Windows & DOS: Issues & Discussions |
|
|
|
1 |
2,629 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
8,430 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
8,369 |
Shell Programming and Scripting |
|
|
|
1 |
7,416 |
Shell Programming and Scripting |
|
|
|
2 |
5,104 |
Shell Programming and Scripting |
|
|
|
3 |
6,262 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,986 |
Shell Programming and Scripting |
|
|
|
4 |
2,368 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
2,438 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,975 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,028 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,956 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
5,017 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,744 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,531 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,249 |
UNIX for Dummies Questions & Answers |
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)