summaryrefslogtreecommitdiff
path: root/README.UPDATE_5_2
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-09-11 23:11:18 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-09-11 23:11:18 +0000
commitbb9a9f2b98940537d96c2e601719c4c1632e21cb (patch)
treef4c88ec6846815a36faa9d260c1f5debf45e95e3 /README.UPDATE_5_2
parent6415ef51e9f7527333fab66fe9fe5d9b9e7241ba (diff)
downloadphp-git-bb9a9f2b98940537d96c2e601719c4c1632e21cb.tar.gz
Typo fix from Steph
Added note about CLI and INI search path
Diffstat (limited to 'README.UPDATE_5_2')
-rw-r--r--README.UPDATE_5_210
1 files changed, 9 insertions, 1 deletions
diff --git a/README.UPDATE_5_2 b/README.UPDATE_5_2
index c7b83eb040..434cdad3ed 100644
--- a/README.UPDATE_5_2
+++ b/README.UPDATE_5_2
@@ -37,7 +37,7 @@ Items from the NEWS file explained
of PHP. Errors of this type are logged as 'Catchable fatal error'.
-- Changed E_ALL error reporting mode to includes E_RECOVERABLE_ERROR. (Marcus)
+- Changed E_ALL error reporting mode to include E_RECOVERABLE_ERROR. (Marcus)
This change means that the value of the E_ALL error_reporting constant is now
6143, where its previous value was 2047. If you are setting the error_reporting
@@ -160,3 +160,11 @@ Items from the NEWS file explained
variable be accessed in write mode. To work around this, you should either
cast the returned value from __get() to an array, or use SPL's ArrayObject
instead of an array.
+
+- CLI SAPI no longer checks cwd for php.ini or the php-cli.ini file (Edin)
+
+ In PHP 5.1.X an undocumented feature was added that made the CLI binary
+ check the current directory for PHP configuration file possibly leading to
+ unpredictable behavior due to an un-expected configuration file being
+ read. This functionality was removed in 5.2 and PHP will no longer search
+ CWD for the presence of the php.ini or the php-cli.ini files.