diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-04-19 14:42:31 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-04-19 14:42:31 +0200 |
commit | 2c2d1a79ce6b922780c6cf3ab1e62a94462290b6 (patch) | |
tree | 0c0e1d47e6cebdc2d3eb5b35cef50b99c3e9475c /php.ini-production | |
parent | 306f9123d656eb04e4c1214617cc3f13d0b6b38d (diff) | |
download | php-git-2c2d1a79ce6b922780c6cf3ab1e62a94462290b6.tar.gz |
Hmm, zend.assertions is not really on/off, but -1/0/1
Diffstat (limited to 'php.ini-production')
-rw-r--r-- | php.ini-production | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/php.ini-production b/php.ini-production index 0a7b2bcb86..1238c0e7ee 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1573,12 +1573,16 @@ url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" ;session.upload_progress.min_freq = "1" [Assertion] -; Do not compile assertions at all (to have no overhead at run-time) -; Default Value: On -; Development Value: On -; Production Value: Off +; Switch whether to compile assertions at all (to have no overhead at run-time) +; -1: Do not compile at all +; 0: Jump over assertion at run-time +; 1: Execute assertions +; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1) +; Default Value: 1 +; Development Value: 1 +; Production Value: -1 ; http://php.net/zend.assertions -zend.assertions = Off +zend.assertions = -1 ; Assert(expr); active by default. ; http://php.net/assert.active |