show/hide this revision's text 2 More details

You can override the directives in the php.ini file several ways, but not all directives can be changed by each method. See the php.ini directives page in the manual for a list of the directives and the methods that will work on each one.

The last column in the table lists the methods that will work on that particular method. In increasing order of difficulty or level of access:

  • PHP_INI_USER - Can be set in user scripts with ini_set() (or any higher method)
  • PHP_INI_PERDIR - Can be set using the .htacess file with php_value for string values or php_flag for binary values (or any higher method)
  • PHP_INI_SYSTEM - Can be set using php.ini or httpd.conf only (both require access to the server's configuration files)
  • PHP_INI_ALL - Can be set using any of the above methods
show/hide this revision's text 1

You can override the directives in the php.ini file several ways, but not all directives can be changed by each method. See the php.ini directives page in the manual for a list of the directives and the methods that will work on each one.

The last column in the table lists the methods that will work on that particular method. In increasing order of difficulty or level of access:

  • PHP_INI_USER - Can be set in user scripts with ini_set()
  • PHP_INI_PERDIR - Can be set using the .htacess file with php_value for string values or php_flag for binary values
  • PHP_INI_SYSTEM - Can be set using php.ini or httpd.conf only
  • PHP_INI_ALL - Can be set using any of the above methods