Skip to content

Commit 4982bb5

Browse files
php.ini: set variables_order to EGPCS
the provided defaults contradicts the documentation so we update the defaults accordingly.
1 parent cf5dac0 commit 4982bb5

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

php.ini-development

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@
151151

152152
; variables_order
153153
; Default Value: "EGPCS"
154-
; Development Value: "GPCS"
155-
; Production Value: "GPCS"
154+
; Development Value: "EGPCS"
155+
; Production Value: "EGPCS"
156156

157157
; zend.exception_ignore_args
158158
; Default Value: Off
@@ -644,10 +644,10 @@ report_memleaks = On
644644
; can still get access to the environment variables through getenv() should you
645645
; need to.
646646
; Default Value: "EGPCS"
647-
; Development Value: "GPCS"
648-
; Production Value: "GPCS";
647+
; Development Value: "EGPCS"
648+
; Production Value: "EGPCS";
649649
; http://php.net/variables-order
650-
variables_order = "GPCS"
650+
variables_order = "EGPCS"
651651

652652
; This directive determines which super global data (G,P & C) should be
653653
; registered into the super global array REQUEST. If so, it also determines

php.ini-production

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@
151151

152152
; variables_order
153153
; Default Value: "EGPCS"
154-
; Development Value: "GPCS"
155-
; Production Value: "GPCS"
154+
; Development Value: "EGPCS"
155+
; Production Value: "EGPCS"
156156

157157
; zend.exception_ignore_args
158158
; Default Value: Off
@@ -646,10 +646,10 @@ report_memleaks = On
646646
; can still get access to the environment variables through getenv() should you
647647
; need to.
648648
; Default Value: "EGPCS"
649-
; Development Value: "GPCS"
650-
; Production Value: "GPCS";
649+
; Development Value: "EGPCS"
650+
; Production Value: "EGPCS";
651651
; http://php.net/variables-order
652-
variables_order = "GPCS"
652+
variables_order = "EGPCS"
653653

654654
; This directive determines which super global data (G,P & C) should be
655655
; registered into the super global array REQUEST. If so, it also determines

0 commit comments

Comments
 (0)