summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2015-04-19 14:42:31 +0200
committerBob Weinand <bobwei9@hotmail.com>2015-04-19 14:42:31 +0200
commit2c2d1a79ce6b922780c6cf3ab1e62a94462290b6 (patch)
tree0c0e1d47e6cebdc2d3eb5b35cef50b99c3e9475c /php.ini-development
parent306f9123d656eb04e4c1214617cc3f13d0b6b38d (diff)
downloadphp-git-2c2d1a79ce6b922780c6cf3ab1e62a94462290b6.tar.gz
Hmm, zend.assertions is not really on/off, but -1/0/1
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development14
1 files changed, 9 insertions, 5 deletions
diff --git a/php.ini-development b/php.ini-development
index 0b38ea3885..3684f0cfb5 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -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