Unix and Linux Discussions Tagged with option |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
4,449 |
Shell Programming and Scripting |
|
|
|
2 |
2,248 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,300 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
7,162 |
Shell Programming and Scripting |
|
|
|
5 |
16,680 |
Shell Programming and Scripting |
|
|
|
3 |
104,231 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,513 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,765 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
3,591 |
Shell Programming and Scripting |
|
|
|
1 |
5,226 |
Programming |
|
|
|
1 |
4,139 |
Shell Programming and Scripting |
|
|
|
0 |
3,546 |
Shell Programming and Scripting |
|
|
|
0 |
4,230 |
Shell Programming and Scripting |
|
|
|
0 |
4,394 |
Programming |
|
|
|
5 |
3,525 |
Shell Programming and Scripting |
|
|
|
0 |
6,115 |
Solaris |
|
|
|
3 |
2,072 |
Shell Programming and Scripting |
|
|
|
2 |
7,693 |
SCO |
|
|
|
2 |
9,267 |
Cybersecurity |
|
|
|
7 |
18,593 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
8,657 |
Shell Programming and Scripting |
|
|
|
4 |
5,547 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,734 |
Shell Programming and Scripting |
|
|
|
3 |
5,152 |
Windows & DOS: Issues & Discussions |
|
|
|
1 |
3,349 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
9,271 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
9,738 |
Shell Programming and Scripting |
|
|
|
1 |
8,960 |
Shell Programming and Scripting |
|
|
|
2 |
8,242 |
Shell Programming and Scripting |
|
|
|
3 |
7,869 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
11,366 |
Shell Programming and Scripting |
|
|
|
4 |
3,316 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
3,443 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,525 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,560 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
7,236 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
6,020 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
4,843 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
6,481 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,650 |
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)