summaryrefslogtreecommitdiff
path: root/ext/standard/basic_functions.h
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2000-11-24 21:05:25 +0000
committerSterling Hughes <sterling@php.net>2000-11-24 21:05:25 +0000
commit0d1bcd480cf7c7d8f7d02b332528485f02586ee0 (patch)
tree663ad31916eb92418afd4baae821a6d780e7868f /ext/standard/basic_functions.h
parent917cfd14e9dab1f24513053621df67455b2157a6 (diff)
downloadphp-git-0d1bcd480cf7c7d8f7d02b332528485f02586ee0.tar.gz
@ 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.
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r--ext/standard/basic_functions.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h
index 9c3ed32ae5..b164ec1ec1 100644
--- a/ext/standard/basic_functions.h
+++ b/ext/standard/basic_functions.h
@@ -41,6 +41,7 @@ PHP_RSHUTDOWN_FUNCTION(basic);
PHP_MINFO_FUNCTION(basic);
PHP_GINIT_FUNCTION(basic);
+PHP_FUNCTION(constant);
PHP_FUNCTION(intval);
PHP_FUNCTION(doubleval);
PHP_FUNCTION(strval);
@@ -78,6 +79,7 @@ PHP_FUNCTION(is_object);
PHP_FUNCTION(error_log);
PHP_FUNCTION(call_user_func);
+PHP_FUNCTION(call_user_func_array);
PHP_FUNCTION(call_user_method);
PHP_FUNCTION(register_shutdown_function);