Its as easy as:
[terminal]
php_value error_reporting 24575
[/terminal]
Note that you can’t use php constants for errors. 24575 is the value of ((E_ALL ^ E_DEPRECATED) | E_STRICT) that disables deprecation warnings and turns on everything else. You should check constant values or write a php script and print the value to be set.