summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2001-03-12 03:08:28 +0000
committerAndrei Zmievski <andrei@php.net>2001-03-12 03:08:28 +0000
commit13148b549121ca0e83f1a9e4a330763257e317c9 (patch)
tree56f909becbcde3aa064eead0db075673ee48ec3f /Zend/zend_API.h
parentd73ef1242986f84a7bb9e6fa088f19d4f22b05dc (diff)
downloadphp-git-13148b549121ca0e83f1a9e4a330763257e317c9.tar.gz
Improve zend_is_callable() to the point where it's actually useful.
Now it just needs to be invoked everywhere in PHP where a callback is expected.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 3b88d917ad..2ad161ea6b 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -120,7 +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);
+ZEND_API zend_bool zend_is_callable(zval *callable, zend_bool syntax_only, char **callable_name);
#define getThis() (this_ptr)