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 withini_set()(or any higher method)PHP_INI_PERDIR- Can be set using the .htacess file withphp_valuefor string values orphp_flagfor 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
