Reputation: 161
Is it possible to disable php changing the value using ini_set('display_errors ', 0) when I have defined this in .htaccess file?
php_value display_errors 1
Upvotes: 0
Views: 96
Reputation: 1300
You can use php_admin_value
directive in virtual host, this cannot be overwritten later in PHP scripts.
EDIT: My bad, this can be used only in virtual host in Apache.
Upvotes: 2