Question:What are the four configuration directive scopes?
Answer Configuration directive scopes are given bellow:
- PHP_INI_PERDIR: Directive can be modified within the php.ini,httpd.conf, or .htaccess files.
- PHP_INI_SYSTEM: Directive can be modified within the php.ini and httpd.conf files.
- PHP_INI_USER: Directive can be modified within user scripts.
- PHP_INI_ALL: Directive can be modified anywhere.
+ Report
What are the four configuration directive scopes?