diff options
| -rw-r--r-- | Zend/ZEND_CHANGES | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/ZEND_CHANGES b/Zend/ZEND_CHANGES index 6e999ef259..71e773b7bb 100644 --- a/Zend/ZEND_CHANGES +++ b/Zend/ZEND_CHANGES @@ -120,7 +120,7 @@ Changes in the Zend Engine 2.0 } function __clone() { - $this->name = $clone->name; + $this->name = $that->name; $this->address = 'New York'; $this->id = self::$id++; } @@ -489,6 +489,8 @@ Changes in the Zend Engine 2.0 print foo::$my_static; ?> + * Static methods (TBD) + * Parameters that are passed by reference to a function may now have default values. |
