summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 79ab5fb807..8f035231e4 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,15 @@ PHP 4 NEWS
- Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
- Changed uniqid() parameters to be optional and allow any prefix length.
(Marcus)
+- Added stream_get_line(), this function will read either the specified
+ number of bytes or until the ending string is found). (Ilia)
+- Added optional parameter to mkdir() which makes directory creation
+ recursive. (Ilia)
+- Added option to file() command that will make the result array not contain
+ the line endings. Another option was added that if used in combination with
+ the previous option make the file() function skip over empty lines. (Ilia)
+- get_extension_funcs() can now retrieve a list of the built-in Zend Engine
+ functions, if "zend" is specified as the module name. (Ilia)
- Improved is_executable() to be available on Windows. (Shane)
- Improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
- Improved array_search() to accept objects as a needle under ZE2. (Moriyoshi)