summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-12-04 20:10:13 +0000
committerAndi Gutmans <andi@php.net>2000-12-04 20:10:13 +0000
commit690812d165cb31d53888bd1167f3983a11e3f8ba (patch)
tree8884b4f11c25e6cbe27bb5683891f7705ee4afa3 /NEWS
parent10b460e7cad86c186b14aec8a53db003fb494e2b (diff)
downloadphp-git-690812d165cb31d53888bd1167f3983a11e3f8ba.tar.gz
- Fix up the NEWS item. We need to make sure that this release we really
do put a link to the NEWS file on the downloads page.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS11
1 files changed, 7 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 1b7cb22785..9f45322e99 100644
--- a/NEWS
+++ b/NEWS
@@ -5,15 +5,18 @@ PHP 4.0 NEWS
- Empty entry. Enjoy
?? ??? 2000, Version 4.0.4
-- Allow passing certain non-variables references by reference. You can do:
- a) func(new myclass());
- b) func(func2()); where func2() returns a reference, i.e. is defined as
+- 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) {...}
+ 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)
- Fixed bad mod_perl interaction which caused segfaults when using LFS (Sascha)
- const CONSTNAME now gets recognized. Before the patch only @const CONSTNAME description was recognized.
- Added extension for the cracklib library. (Alexander Feldman)