summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2001-02-01 05:01:26 +0000
committerAndrei Zmievski <andrei@php.net>2001-02-01 05:01:26 +0000
commit8fe036596f64ac30c305238ac62df6cd99b77fe7 (patch)
tree6f9ef16edd73ea4b319681cf66243f167fe7a99a /Zend/zend_API.h
parentf5bec86645de04f8bf5ca94c80f6596f9754d0db (diff)
downloadphp-git-8fe036596f64ac30c305238ac62df6cd99b77fe7.tar.gz
Added zend_is_callable() function that checks whether passed zval
represents a valid and exiting callable construct.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 4759026eb7..8ae380b948 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -120,6 +120,7 @@ ZEND_API zend_module_entry *zend_get_module(int module_number);
ZEND_API int zend_disable_function(char *function_name, uint function_name_length);
ZEND_API void wrong_param_count(void);
+ZEND_API zend_bool zend_is_callable(zval *function);
#define getThis() (this_ptr)