Hmm, zend.assertions is not really on/off, but -1/0/1

This commit is contained in:
Bob Weinand 2015-04-19 14:42:31 +02:00
parent 306f9123d6
commit 2c2d1a79ce
2 changed files with 18 additions and 10 deletions

View File

@ -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 = On
zend.assertions = 1
; Assert(expr); active by default.
; http://php.net/assert.active

View File

@ -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