summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-12-05 17:12:30 +0000
committerAndi Gutmans <andi@php.net>2000-12-05 17:12:30 +0000
commita574e2408000753331a854fbeedf12f2b1ee36a3 (patch)
tree9b449ffe27f1e431a5141ed85e6c40dbf44e0167
parentd812632083e3049acc6eed4ea13d9a2dd8c9b307 (diff)
downloadphp-git-a574e2408000753331a854fbeedf12f2b1ee36a3.tar.gz
- Update 4.0.4 branches NEWS file
-rw-r--r--NEWS12
1 files changed, 12 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 8166e3cae3..373e0eb6b9 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,18 @@ PHP 4.0 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2000, Version 4.0.4
+- Allow for three expression types to be sent to functions which are requesting
+ the function argument to be passed by reference (only c. was previously
+ supported):
+ a. func(new myclass());
+ b. func(func2()); where func2() returns a reference, i.e. is defined as
+ function &func2(...)
+ {
+ ...
+ }
+ c. func($var); where func() is defined as function func(&$var) {...}
+ You CAN'T count on any other expressions to be passable by reference.
+ (Andi, Zend Engine)
- Made ldap_get_entries() return an array even if there are no entries
in search result. (Jani)
- Fixed bad mod_perl interaction which caused segfaults when using LFS (Sascha)