]> granicus.if.org Git - php/commitdiff
Add get_defined_functions() and get_defined_vars(). Clean up constant() entry a...
authorSterling Hughes <sterling@php.net>
Sat, 25 Nov 2000 16:37:26 +0000 (16:37 +0000)
committerSterling Hughes <sterling@php.net>
Sat, 25 Nov 2000 16:37:26 +0000 (16:37 +0000)
# Are we not ready for a release yet?

NEWS

diff --git a/NEWS b/NEWS
index 085c71164aab3d1516fd1bab5fdb95dea131cb64..551b80739286bae36aab3ad4988c5872b22aa445 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,11 +2,16 @@ PHP 4.0                                                                    NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
 ?? ??? 2000, Version 4.0.4
+- Added the get_defined_functions() function which returns a list of all 
+  currently defined functions. (Sterling)
+- Added the get_defined_vars() function which returns an associative array
+  of all variables defined in the current scope and their subsequent values.
+  (Sterling) 
 - Added the call_user_func_array() function which gives you the ability to
   call a user function by passing an array of parameters as the second
-  argument.
-  Added the constant() function which returns the value of a constant given
-  the constant's name.
+  argument. (Sterling)
+- Added the constant() function which returns the value of a constant given
+  the constant's name. (Sterling)
 - Implemented support for Perl-style matching regexp delimiters in PCRE.
   You can use <{[( and )]}> to delimit your expressions now. (Andrei)
 - Introduced new 'F' modifier in PCRE that lets you specify a function