Hello All,
In php.ini, the 'disable_functions' directive can be used to disable certain functions that you may consider to be not necessary or dangerous ones by putting them comma separated.
I just wanted to know, it it possible to set 'disable_functions' using php's function:
ini_set
For example, is following line of code correct?
ini_set('disable_functions', 'system, etc');
Thanks