It sounds like the software itself may be setting the error level, thus overriding the setting in php.ini.
If this is true, you're SOL.
That's actually not true, but it got me on the path to a real solution, so kudos to you, Tomalak!
When PHP runs as an Apache module, you can access/change any configuration setting available in php.ini using directives in Apache configuration files. Those directives are...
php_value
php_flag
php_admin_value
php_admin_flag
The difference between the php_* and php_admin_* versions is the key to this issue. Values set using php_admin_value and php_admin_flag can only be set in Apache global and VirtualHost configs; they are not overrideable by .htaccess or ini.set().
The error_reporting() function is equivalent to an ini_set() call, and falls under the same rules.
So I went into the virtualhost configuration for the site in question, and added the following lines...
php_admin_value error_reporting 22527
php_admin_value error_log /custom/log/path/php_errors.log
php_admin_flag log_errors On
php_admin_flag display_errors Off
The first line is the bitwise value for error_reporting = E_ALL & ~E_DEPRECATED. I retrieved this value by creating a simple script:
ini_set("error_reporting", E_ALL & ~E_DEPRECATED);
echo ini_get("error_reporting");
If you want to ignore system notices along with deprecation alerts -- error_reporting = E_ALL & ~E_DEPRECATED & ~E_NOTICE -- the bitwise value is 22519.
The second line sends all PHP errors to a custom log. By default PHP will use the syslog value, usually /var/log/apache2/error.log or something similar.
The third line enables file logging.
Last one turns off on-page error display.
Again, the priority and order of operations is key here. These values supersede those defined in php.ini, and at the same time cannot be overridden by other changes within the application or in .htaccess files.
More details on changing configuration values outside php.ini can be found in the PHP documentation.