summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorAndrea Faulds <ajf@ajf.me>2013-10-15 22:38:46 +0000
committerAndrea Faulds <ajf@ajf.me>2013-10-15 22:38:46 +0000
commit29e755ac6669fa1801bf1e1c1e6acee8d78c9498 (patch)
treefa033f900da9649cf5064c7a9d2a4a8916403ee1 /php.ini-development
parent8495d6303400edd9b84a6febd2a6b62b38e11c97 (diff)
parentb0a36007abb522b6b1e3a6b3108eb726053b9d72 (diff)
downloadphp-git-29e755ac6669fa1801bf1e1c1e6acee8d78c9498.tar.gz
Merge branch 'PHP-5.4' into JSONWhitespaceFix
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development15
1 files changed, 8 insertions, 7 deletions
diff --git a/php.ini-development b/php.ini-development
index db908c0718..b935f22eb5 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -83,6 +83,8 @@
; development version only in development environments as errors shown to
; application users can inadvertently leak otherwise secure information.
+; This is php.ini-development INI file.
+
;;;;;;;;;;;;;;;;;;;
; Quick Reference ;
;;;;;;;;;;;;;;;;;;;
@@ -197,13 +199,12 @@
engine = On
; This directive determines whether or not PHP will recognize code between
-; <? and ?> tags as PHP source which should be processed as such. It's been
-; recommended for several years that you not use the short tag "short cut" and
-; instead to use the full <?php and ?> tag combination. With the wide spread use
-; of XML and use of these tags by other languages, the server can become easily
-; confused and end up parsing the wrong code in the wrong context. But because
-; this short cut has been a feature for such a long time, it's currently still
-; supported for backwards compatibility, but we recommend you don't use them.
+; <? and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that <?php and ?> should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the <?= shorthand tag, which can be
+; used regardless of this directive.
; Default Value: On
; Development Value: Off
; Production Value: Off