How can I change values of the .ini files via command line? (linux or windows)
For example I have a php.ini file:
display_errors = On
error_reporting = E_ALL & ~E_NOTICE
Now, I need be like this command:
MAGIC-COMMAND display_errors=Off error_reporting=E_ALL php.ini
And that options effective and write in php.ini file, and I have this content:
display_errors = Off
error_reporting = E_ALL