Skip to content

Commit 41d448e

Browse files
committed
Add to the PHP INI templates
Note that if these should be or not is up should be up to a vote; I put some values here for now.
1 parent b1d3f50 commit 41d448e

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

php.ini-development

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,15 @@ ignore_repeated_source = Off
611611
; Production Value: On
612612
;fatal_error_backtraces = On
613613

614+
; This directive controls whether PHP will print the actual arguments of a
615+
; function upon an error. If disabled (or there was an error fetching the
616+
; arguments), the function providing the error may optionally provide some
617+
; additional information after the problem function's name.
618+
; Default Value: Off
619+
; Development Value: On
620+
; Production Value: On
621+
display_error_function_args = On
622+
614623
;;;;;;;;;;;;;;;;;
615624
; Data Handling ;
616625
;;;;;;;;;;;;;;;;;

php.ini-production

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,15 @@ ignore_repeated_source = Off
613613
; Production Value: On
614614
;fatal_error_backtraces = On
615615

616+
; This directive controls whether PHP will print the actual arguments of a
617+
; function upon an error. If disabled (or there was an error fetching the
618+
; arguments), the function providing the error may optionally provide some
619+
; additional information after the problem function's name.
620+
; Default Value: Off
621+
; Development Value: On
622+
; Production Value: On
623+
display_error_function_args = On
624+
616625
;;;;;;;;;;;;;;;;;
617626
; Data Handling ;
618627
;;;;;;;;;;;;;;;;;

0 commit comments

Comments
 (0)