Query: ini_set
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
INI_SET(3) 1 INI_SET(3) ini_set - Sets the value of a configuration optionSYNOPSISstring ini_set (string $varname, string $newvalue)DESCRIPTIONSets the value of the given configuration option. The configuration option will keep this new value during the script's execution, and will be restored at the script's ending.PARAMETERSo $varname - Not all the available options can be changed using ini_set(3). There is a list of all available options in the appendix. o $newvalue - The new value for the option.RETURN VALUESReturns the old value on success, FALSE on failure.EXAMPLESExample #1 Setting an ini option <?php echo ini_get('display_errors'); if (!ini_get('display_errors')) { ini_set('display_errors', '1'); } echo ini_get('display_errors'); ?>SEE ALSOget_cfg_var(3), ini_get(3), ini_get_all(3), ini_restore(3), How to change configuration settings. PHP Documentation Group INI_SET(3)
Related Man Pages |
---|
get_cfg_var(3) - php |
date_default_timezone_get(3) - php |
error_reporting(3) - php |
mysqli(3) - php |
php_ini_scanned_files(3) - php |
Similar Topics in the Unix Linux Community |
---|
What is siginitsetinv |