1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:08:10 +08:00
|
|
|
| Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2007-11-03 03:40:39 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
2001-07-10 02:51:29 +08:00
|
|
|
| Andrei Zmievski <andrei@php.net> |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/* $Id$ */
|
1999-07-16 22:58:16 +08:00
|
|
|
|
2000-07-03 07:54:19 +08:00
|
|
|
#ifndef ZEND_API_H
|
|
|
|
#define ZEND_API_H
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-02-27 02:18:34 +08:00
|
|
|
#include "zend_modules.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
#include "zend_list.h"
|
2000-03-26 03:10:07 +08:00
|
|
|
#include "zend_operators.h"
|
|
|
|
#include "zend_variables.h"
|
2000-06-14 01:58:33 +08:00
|
|
|
#include "zend_execute.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-05-20 15:17:30 +08:00
|
|
|
|
|
|
|
BEGIN_EXTERN_C()
|
2000-03-30 01:13:16 +08:00
|
|
|
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
typedef struct _zend_function_entry {
|
2007-09-28 02:00:48 +08:00
|
|
|
const char *fname;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
|
2007-09-28 02:00:48 +08:00
|
|
|
const struct _zend_arg_info *arg_info;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
zend_uint num_args;
|
|
|
|
zend_uint flags;
|
|
|
|
} zend_function_entry;
|
|
|
|
|
2008-07-24 17:42:18 +08:00
|
|
|
typedef struct _zend_fcall_info {
|
|
|
|
size_t size;
|
|
|
|
HashTable *function_table;
|
2014-02-10 14:04:30 +08:00
|
|
|
zval function_name;
|
2014-03-18 03:15:22 +08:00
|
|
|
zend_array *symbol_table;
|
2014-02-10 14:04:30 +08:00
|
|
|
zval *retval;
|
2008-07-24 17:42:18 +08:00
|
|
|
zend_uint param_count;
|
2014-02-10 14:04:30 +08:00
|
|
|
zval *params;
|
2014-03-28 06:11:22 +08:00
|
|
|
zend_object *object;
|
2008-07-24 17:42:18 +08:00
|
|
|
zend_bool no_separation;
|
|
|
|
} zend_fcall_info;
|
|
|
|
|
|
|
|
typedef struct _zend_fcall_info_cache {
|
|
|
|
zend_bool initialized;
|
|
|
|
zend_function *function_handler;
|
|
|
|
zend_class_entry *calling_scope;
|
|
|
|
zend_class_entry *called_scope;
|
2014-03-28 06:11:22 +08:00
|
|
|
zend_object *object;
|
2008-07-24 17:42:18 +08:00
|
|
|
} zend_fcall_info_cache;
|
|
|
|
|
2013-01-31 00:08:32 +08:00
|
|
|
#define ZEND_NS_NAME(ns, name) ns "\\" name
|
2008-05-12 15:11:55 +08:00
|
|
|
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
#define ZEND_FN(name) zif_##name
|
2006-05-10 07:53:23 +08:00
|
|
|
#define ZEND_MN(name) zim_##name
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
#define ZEND_NAMED_FUNCTION(name) void name(INTERNAL_FUNCTION_PARAMETERS)
|
|
|
|
#define ZEND_FUNCTION(name) ZEND_NAMED_FUNCTION(ZEND_FN(name))
|
2006-05-10 07:53:23 +08:00
|
|
|
#define ZEND_METHOD(classname, name) ZEND_NAMED_FUNCTION(ZEND_MN(classname##_##name))
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
|
2003-08-24 19:09:45 +08:00
|
|
|
#define ZEND_FENTRY(zend_name, name, arg_info, flags) { #zend_name, name, arg_info, (zend_uint) (sizeof(arg_info)/sizeof(struct _zend_arg_info)-1), flags },
|
|
|
|
|
2006-12-20 18:34:36 +08:00
|
|
|
#define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags) { zend_name, name, arg_info, (zend_uint) (sizeof(arg_info)/sizeof(struct _zend_arg_info)-1), flags },
|
|
|
|
#define ZEND_RAW_NAMED_FE(zend_name, name, arg_info) ZEND_RAW_FENTRY(#zend_name, name, arg_info, 0)
|
|
|
|
|
2003-08-24 19:09:45 +08:00
|
|
|
#define ZEND_NAMED_FE(zend_name, name, arg_info) ZEND_FENTRY(zend_name, name, arg_info, 0)
|
|
|
|
#define ZEND_FE(name, arg_info) ZEND_FENTRY(name, ZEND_FN(name), arg_info, 0)
|
2006-02-26 02:25:45 +08:00
|
|
|
#define ZEND_DEP_FE(name, arg_info) ZEND_FENTRY(name, ZEND_FN(name), arg_info, ZEND_ACC_DEPRECATED)
|
2003-08-25 00:35:58 +08:00
|
|
|
#define ZEND_FALIAS(name, alias, arg_info) ZEND_FENTRY(name, ZEND_FN(alias), arg_info, 0)
|
2006-02-26 02:25:45 +08:00
|
|
|
#define ZEND_DEP_FALIAS(name, alias, arg_info) ZEND_FENTRY(name, ZEND_FN(alias), arg_info, ZEND_ACC_DEPRECATED)
|
2006-05-10 07:53:23 +08:00
|
|
|
#define ZEND_NAMED_ME(zend_name, name, arg_info, flags) ZEND_FENTRY(zend_name, name, arg_info, flags)
|
|
|
|
#define ZEND_ME(classname, name, arg_info, flags) ZEND_FENTRY(name, ZEND_MN(classname##_##name), arg_info, flags)
|
2003-08-24 19:09:45 +08:00
|
|
|
#define ZEND_ABSTRACT_ME(classname, name, arg_info) ZEND_FENTRY(name, NULL, arg_info, ZEND_ACC_PUBLIC|ZEND_ACC_ABSTRACT)
|
2004-04-12 21:02:54 +08:00
|
|
|
#define ZEND_MALIAS(classname, name, alias, arg_info, flags) \
|
2006-05-10 07:53:23 +08:00
|
|
|
ZEND_FENTRY(name, ZEND_MN(classname##_##alias), arg_info, flags)
|
|
|
|
#define ZEND_ME_MAPPING(name, func_name, arg_types, flags) ZEND_NAMED_ME(name, ZEND_FN(func_name), arg_types, flags)
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
|
2008-05-12 15:11:55 +08:00
|
|
|
#define ZEND_NS_FENTRY(ns, zend_name, name, arg_info, flags) ZEND_RAW_FENTRY(ZEND_NS_NAME(ns, #zend_name), name, arg_info, flags)
|
|
|
|
|
|
|
|
#define ZEND_NS_RAW_FENTRY(ns, zend_name, name, arg_info, flags) ZEND_RAW_FENTRY(ZEND_NS_NAME(ns, zend_name), name, arg_info, flags)
|
|
|
|
#define ZEND_NS_RAW_NAMED_FE(ns, zend_name, name, arg_info) ZEND_NS_RAW_FENTRY(ns, #zend_name, name, arg_info, 0)
|
|
|
|
|
2013-05-20 04:32:17 +08:00
|
|
|
#define ZEND_NS_NAMED_FE(ns, zend_name, name, arg_info) ZEND_NS_FENTRY(ns, zend_name, name, arg_info, 0)
|
2008-05-12 15:11:55 +08:00
|
|
|
#define ZEND_NS_FE(ns, name, arg_info) ZEND_NS_FENTRY(ns, name, ZEND_FN(name), arg_info, 0)
|
|
|
|
#define ZEND_NS_DEP_FE(ns, name, arg_info) ZEND_NS_FENTRY(ns, name, ZEND_FN(name), arg_info, ZEND_ACC_DEPRECATED)
|
|
|
|
#define ZEND_NS_FALIAS(ns, name, alias, arg_info) ZEND_NS_FENTRY(ns, name, ZEND_FN(alias), arg_info, 0)
|
|
|
|
#define ZEND_NS_DEP_FALIAS(ns, name, alias, arg_info) ZEND_NS_FENTRY(ns, name, ZEND_FN(alias), arg_info, ZEND_ACC_DEPRECATED)
|
|
|
|
|
2011-07-25 19:30:53 +08:00
|
|
|
#define ZEND_FE_END { NULL, NULL, NULL, 0, 0 }
|
|
|
|
|
2013-09-27 00:39:17 +08:00
|
|
|
#define ZEND_ARG_INFO(pass_by_ref, name) { #name, sizeof(#name)-1, NULL, 0, 0, pass_by_ref, 0, 0 },
|
|
|
|
#define ZEND_ARG_PASS_INFO(pass_by_ref) { NULL, 0, NULL, 0, 0, pass_by_ref, 0, 0 },
|
|
|
|
#define ZEND_ARG_OBJ_INFO(pass_by_ref, name, classname, allow_null) { #name, sizeof(#name)-1, #classname, sizeof(#classname)-1, IS_OBJECT, pass_by_ref, allow_null, 0 },
|
|
|
|
#define ZEND_ARG_ARRAY_INFO(pass_by_ref, name, allow_null) { #name, sizeof(#name)-1, NULL, 0, IS_ARRAY, pass_by_ref, allow_null, 0 },
|
|
|
|
#define ZEND_ARG_TYPE_INFO(pass_by_ref, name, type_hint, allow_null) { #name, sizeof(#name)-1, NULL, 0, type_hint, pass_by_ref, allow_null, 0 },
|
|
|
|
#define ZEND_ARG_VARIADIC_INFO(pass_by_ref, name) { #name, sizeof(#name)-1, NULL, 0, 0, pass_by_ref, 0, 1 },
|
|
|
|
|
|
|
|
#define ZEND_BEGIN_ARG_INFO_EX(name, _unused, return_reference, required_num_args) \
|
2008-11-17 19:28:01 +08:00
|
|
|
static const zend_arg_info name[] = { \
|
2013-09-27 00:39:17 +08:00
|
|
|
{ NULL, 0, NULL, required_num_args, 0, return_reference, 0, 0 },
|
|
|
|
#define ZEND_BEGIN_ARG_INFO(name, _unused) \
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(name, 0, ZEND_RETURN_VALUE, -1)
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
#define ZEND_END_ARG_INFO() };
|
1999-04-18 23:11:52 +08:00
|
|
|
|
2001-08-11 00:19:49 +08:00
|
|
|
/* Name macros */
|
|
|
|
#define ZEND_MODULE_STARTUP_N(module) zm_startup_##module
|
|
|
|
#define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module
|
|
|
|
#define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module
|
|
|
|
#define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module
|
2004-03-17 06:27:26 +08:00
|
|
|
#define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module
|
2001-08-11 00:19:49 +08:00
|
|
|
#define ZEND_MODULE_INFO_N(module) zm_info_##module
|
2006-06-15 22:03:21 +08:00
|
|
|
#define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module
|
|
|
|
#define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module
|
1999-04-18 23:11:52 +08:00
|
|
|
|
2001-08-11 00:19:49 +08:00
|
|
|
/* Declaration macros */
|
|
|
|
#define ZEND_MODULE_STARTUP_D(module) int ZEND_MODULE_STARTUP_N(module)(INIT_FUNC_ARGS)
|
|
|
|
#define ZEND_MODULE_SHUTDOWN_D(module) int ZEND_MODULE_SHUTDOWN_N(module)(SHUTDOWN_FUNC_ARGS)
|
|
|
|
#define ZEND_MODULE_ACTIVATE_D(module) int ZEND_MODULE_ACTIVATE_N(module)(INIT_FUNC_ARGS)
|
|
|
|
#define ZEND_MODULE_DEACTIVATE_D(module) int ZEND_MODULE_DEACTIVATE_N(module)(SHUTDOWN_FUNC_ARGS)
|
2004-03-17 06:27:26 +08:00
|
|
|
#define ZEND_MODULE_POST_ZEND_DEACTIVATE_D(module) int ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module)(void)
|
2001-08-11 00:19:49 +08:00
|
|
|
#define ZEND_MODULE_INFO_D(module) void ZEND_MODULE_INFO_N(module)(ZEND_MODULE_INFO_FUNC_ARGS)
|
2006-06-15 22:03:21 +08:00
|
|
|
#define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##_globals *module##_globals TSRMLS_DC)
|
|
|
|
#define ZEND_MODULE_GLOBALS_DTOR_D(module) void ZEND_MODULE_GLOBALS_DTOR_N(module)(zend_##module##_globals *module##_globals TSRMLS_DC)
|
1999-04-18 23:11:52 +08:00
|
|
|
|
2000-05-02 09:33:18 +08:00
|
|
|
#define ZEND_GET_MODULE(name) \
|
2003-05-20 21:21:26 +08:00
|
|
|
BEGIN_EXTERN_C()\
|
|
|
|
ZEND_DLEXPORT zend_module_entry *get_module(void) { return &name##_module_entry; }\
|
|
|
|
END_EXTERN_C()
|
2000-04-01 22:15:20 +08:00
|
|
|
|
|
|
|
#define ZEND_BEGIN_MODULE_GLOBALS(module_name) \
|
|
|
|
typedef struct _zend_##module_name##_globals {
|
|
|
|
#define ZEND_END_MODULE_GLOBALS(module_name) \
|
|
|
|
} zend_##module_name##_globals;
|
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
|
|
|
|
#define ZEND_DECLARE_MODULE_GLOBALS(module_name) \
|
2001-04-20 01:51:23 +08:00
|
|
|
ts_rsrc_id module_name##_globals_id;
|
|
|
|
#define ZEND_EXTERN_MODULE_GLOBALS(module_name) \
|
|
|
|
extern ts_rsrc_id module_name##_globals_id;
|
2000-04-01 22:15:20 +08:00
|
|
|
#define ZEND_INIT_MODULE_GLOBALS(module_name, globals_ctor, globals_dtor) \
|
2001-07-27 18:10:39 +08:00
|
|
|
ts_allocate_id(&module_name##_globals_id, sizeof(zend_##module_name##_globals), (ts_allocate_ctor) globals_ctor, (ts_allocate_dtor) globals_dtor);
|
2000-04-01 22:15:20 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define ZEND_DECLARE_MODULE_GLOBALS(module_name) \
|
2001-04-20 01:51:23 +08:00
|
|
|
zend_##module_name##_globals module_name##_globals;
|
|
|
|
#define ZEND_EXTERN_MODULE_GLOBALS(module_name) \
|
|
|
|
extern zend_##module_name##_globals module_name##_globals;
|
2000-04-01 22:15:20 +08:00
|
|
|
#define ZEND_INIT_MODULE_GLOBALS(module_name, globals_ctor, globals_dtor) \
|
|
|
|
globals_ctor(&module_name##_globals);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-11-03 03:40:39 +08:00
|
|
|
#define INIT_CLASS_ENTRY(class_container, class_name, functions) \
|
|
|
|
INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, NULL, NULL, NULL)
|
1999-05-28 20:06:59 +08:00
|
|
|
|
2007-11-03 03:40:39 +08:00
|
|
|
#define INIT_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions) \
|
|
|
|
INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, NULL, NULL, NULL, NULL, NULL)
|
|
|
|
|
|
|
|
#define INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \
|
1999-05-28 20:06:59 +08:00
|
|
|
{ \
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_string *cl_name; \
|
|
|
|
cl_name = STR_INIT(class_name, class_name_len, 1); \
|
|
|
|
class_container.name = zend_new_interned_string(cl_name TSRMLS_CC); \
|
2012-08-04 10:41:26 +08:00
|
|
|
INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \
|
|
|
|
{ \
|
2001-11-03 20:19:52 +08:00
|
|
|
class_container.constructor = NULL; \
|
2001-12-27 22:35:09 +08:00
|
|
|
class_container.destructor = NULL; \
|
2001-12-27 03:54:20 +08:00
|
|
|
class_container.clone = NULL; \
|
2006-05-10 07:53:23 +08:00
|
|
|
class_container.serialize = NULL; \
|
|
|
|
class_container.unserialize = NULL; \
|
|
|
|
class_container.create_object = NULL; \
|
2003-10-23 03:59:58 +08:00
|
|
|
class_container.interface_gets_implemented = NULL; \
|
2007-09-29 17:34:24 +08:00
|
|
|
class_container.get_static_method = NULL; \
|
2006-05-10 07:53:23 +08:00
|
|
|
class_container.__call = handle_fcall; \
|
2007-11-03 03:40:39 +08:00
|
|
|
class_container.__callstatic = NULL; \
|
2006-05-10 07:53:23 +08:00
|
|
|
class_container.__tostring = NULL; \
|
|
|
|
class_container.__get = handle_propget; \
|
|
|
|
class_container.__set = handle_propset; \
|
|
|
|
class_container.__unset = handle_propunset; \
|
|
|
|
class_container.__isset = handle_propisset; \
|
2014-02-18 11:13:00 +08:00
|
|
|
class_container.__debugInfo = NULL; \
|
2006-05-10 07:53:23 +08:00
|
|
|
class_container.serialize_func = NULL; \
|
|
|
|
class_container.unserialize_func = NULL; \
|
|
|
|
class_container.serialize = NULL; \
|
|
|
|
class_container.unserialize = NULL; \
|
|
|
|
class_container.parent = NULL; \
|
|
|
|
class_container.num_interfaces = 0; \
|
2010-08-14 09:12:43 +08:00
|
|
|
class_container.traits = NULL; \
|
|
|
|
class_container.num_traits = 0; \
|
|
|
|
class_container.trait_aliases = NULL; \
|
|
|
|
class_container.trait_precedences = NULL; \
|
2006-05-10 07:53:23 +08:00
|
|
|
class_container.interfaces = NULL; \
|
|
|
|
class_container.get_iterator = NULL; \
|
|
|
|
class_container.iterator_funcs.funcs = NULL; \
|
2010-09-15 15:38:52 +08:00
|
|
|
class_container.info.internal.module = NULL; \
|
|
|
|
class_container.info.internal.builtin_functions = functions; \
|
1999-05-28 20:06:59 +08:00
|
|
|
}
|
|
|
|
|
2005-07-08 00:07:09 +08:00
|
|
|
#define INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, handle_fcall, handle_propget, handle_propset) \
|
2007-11-03 03:40:39 +08:00
|
|
|
INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, sizeof(class_name)-1, functions, handle_fcall, handle_propget, handle_propset, NULL, NULL)
|
2005-07-08 00:07:09 +08:00
|
|
|
|
2008-05-12 15:11:55 +08:00
|
|
|
#define INIT_NS_CLASS_ENTRY(class_container, ns, class_name, functions) \
|
|
|
|
INIT_CLASS_ENTRY(class_container, ZEND_NS_NAME(ns, class_name), functions)
|
|
|
|
#define INIT_OVERLOADED_NS_CLASS_ENTRY_EX(class_container, ns, class_name, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \
|
|
|
|
INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, ZEND_NS_NAME(ns, class_name), sizeof(ZEND_NS_NAME(ns, class_name))-1, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset)
|
|
|
|
#define INIT_OVERLOADED_NS_CLASS_ENTRY(class_container, ns, class_name, functions, handle_fcall, handle_propget, handle_propset) \
|
|
|
|
INIT_OVERLOADED_CLASS_ENTRY(class_container, ZEND_NS_NAME(ns, class_name), functions, handle_fcall, handle_propget, handle_propset)
|
|
|
|
|
2005-12-01 19:48:17 +08:00
|
|
|
#ifdef ZTS
|
2010-05-25 01:07:52 +08:00
|
|
|
# define CE_STATIC_MEMBERS(ce) (((ce)->type==ZEND_USER_CLASS)?(ce)->static_members_table:CG(static_members_table)[(zend_intptr_t)(ce)->static_members_table])
|
2005-12-01 19:48:17 +08:00
|
|
|
#else
|
2010-05-24 22:11:39 +08:00
|
|
|
# define CE_STATIC_MEMBERS(ce) ((ce)->static_members_table)
|
2005-12-01 19:48:17 +08:00
|
|
|
#endif
|
|
|
|
|
2007-11-03 03:40:39 +08:00
|
|
|
#define ZEND_FCI_INITIALIZED(fci) ((fci).size != 0)
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
int zend_next_free_module(void);
|
|
|
|
|
2004-02-20 16:03:27 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2000-02-19 21:11:39 +08:00
|
|
|
ZEND_API int zend_get_parameters(int ht, int param_count, ...);
|
2008-06-28 05:16:41 +08:00
|
|
|
ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array TSRMLS_DC);
|
2001-07-30 10:07:52 +08:00
|
|
|
|
2004-09-29 06:55:22 +08:00
|
|
|
/* internal function to efficiently copy parameters when executing __call() */
|
|
|
|
ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC);
|
|
|
|
|
2001-07-30 10:07:52 +08:00
|
|
|
#define zend_get_parameters_array(ht, param_count, argument_array) \
|
2014-06-25 00:39:37 +08:00
|
|
|
_zend_get_parameters_array_ex(param_count, argument_array TSRMLS_CC)
|
2001-07-30 10:07:52 +08:00
|
|
|
#define zend_get_parameters_array_ex(param_count, argument_array) \
|
|
|
|
_zend_get_parameters_array_ex(param_count, argument_array TSRMLS_CC)
|
2008-03-11 06:02:41 +08:00
|
|
|
#define zend_parse_parameters_none() \
|
|
|
|
zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "")
|
2001-07-10 02:51:29 +08:00
|
|
|
|
|
|
|
/* Parameter parsing API -- andrei */
|
|
|
|
|
|
|
|
#define ZEND_PARSE_PARAMS_QUIET 1<<1
|
2010-10-15 05:33:10 +08:00
|
|
|
ZEND_API int zend_parse_parameters(int num_args TSRMLS_DC, const char *type_spec, ...);
|
|
|
|
ZEND_API int zend_parse_parameters_ex(int flags, int num_args TSRMLS_DC, const char *type_spec, ...);
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API char *zend_zval_type_name(const zval *arg);
|
2001-07-10 02:51:29 +08:00
|
|
|
|
2010-10-15 05:33:10 +08:00
|
|
|
ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...);
|
|
|
|
ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...);
|
2003-02-03 07:30:14 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int zend_parse_parameter(int flags, int arg_num TSRMLS_DC, zval *arg, const char *spec, ...);
|
Expose zend_parse_arg() as zend_parse_parameter()
Sometimes, one wants to accept several types for a given parameter. zpp
has special functionality for detecting the NULL type, since the NULL
type is frequently used to skip parameters.
However, supporting several types is otherwise very tedious. There are
many cases where this situation arises -- for instance one may want
to accept an arbitrary number of integer and expect them in an array,
but allow a bare integer too; one may want to accept something that
will be used as an array key (which can be either and int or a string);
one may want to accept integer and double numbers. A search for IS_LONG
reveals many situations where this need arises.
The usual solution is to fetch the argument with 'z'/'Z', check its
type, and then convert the argument, e.g. with convert_to_long_ex().
As explain in the last commit, this has different behavior and
generates inconsistency.
Another -- even more flawed strategy --, is to try zpp with a specific
format, forcing it quiet, and if it fails retrying with another form.
But because zpp changes the arguments directly in the stack (for
instance, using "l" converts the zval in the stack to IS_LONG), the
arguments may look different after the first zpp, leaving subtle bugs.
This commit also allows more complex scenarios, for instance where the
expected type of one parameter depends on other parameters.
2012-07-19 04:05:42 +08:00
|
|
|
|
2001-07-30 13:34:21 +08:00
|
|
|
/* End of parameter parsing API -- andrei */
|
1999-04-15 03:53:33 +08:00
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC);
|
|
|
|
ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC);
|
2013-12-13 03:30:45 +08:00
|
|
|
ZEND_API int zend_startup_module(zend_module_entry *module_entry TSRMLS_DC);
|
2005-07-19 00:20:08 +08:00
|
|
|
ZEND_API zend_module_entry* zend_register_internal_module(zend_module_entry *module_entry TSRMLS_DC);
|
|
|
|
ZEND_API zend_module_entry* zend_register_module_ex(zend_module_entry *module TSRMLS_DC);
|
2005-06-30 21:43:00 +08:00
|
|
|
ZEND_API int zend_startup_module_ex(zend_module_entry *module TSRMLS_DC);
|
2005-06-17 17:36:26 +08:00
|
|
|
ZEND_API int zend_startup_modules(TSRMLS_D);
|
2010-10-15 15:30:24 +08:00
|
|
|
ZEND_API void zend_collect_module_handlers(TSRMLS_D);
|
2010-07-06 19:40:17 +08:00
|
|
|
ZEND_API void zend_destroy_modules(void);
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC);
|
2000-06-09 22:40:14 +08:00
|
|
|
|
2001-07-30 09:48:22 +08:00
|
|
|
ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *class_entry TSRMLS_DC);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce TSRMLS_DC);
|
2003-10-23 03:59:58 +08:00
|
|
|
ZEND_API zend_class_entry *zend_register_internal_interface(zend_class_entry *orig_class_entry TSRMLS_DC);
|
2003-10-15 14:24:17 +08:00
|
|
|
ZEND_API void zend_class_implements(zend_class_entry *class_entry TSRMLS_DC, int num_interfaces, ...);
|
2000-06-09 22:40:14 +08:00
|
|
|
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int zend_register_class_alias_ex(const char *name, int name_len, zend_class_entry *ce TSRMLS_DC);
|
2008-05-12 15:11:55 +08:00
|
|
|
|
|
|
|
#define zend_register_class_alias(name, ce) \
|
2013-01-30 02:47:45 +08:00
|
|
|
zend_register_class_alias_ex(name, sizeof(name)-1, ce TSRMLS_CC)
|
2008-05-12 15:11:55 +08:00
|
|
|
#define zend_register_ns_class_alias(ns, name, ce) \
|
2013-01-30 02:47:45 +08:00
|
|
|
zend_register_class_alias_ex(ZEND_NS_NAME(ns, name), sizeof(ZEND_NS_NAME(ns, name))-1, ce TSRMLS_CC)
|
2008-05-12 15:11:55 +08:00
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
ZEND_API int zend_disable_function(char *function_name, uint function_name_length TSRMLS_DC);
|
2003-03-03 09:22:43 +08:00
|
|
|
ZEND_API int zend_disable_class(char *class_name, uint class_name_length TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
ZEND_API void zend_wrong_param_count(TSRMLS_D);
|
2005-04-27 23:45:36 +08:00
|
|
|
|
|
|
|
#define IS_CALLABLE_CHECK_SYNTAX_ONLY (1<<0)
|
|
|
|
#define IS_CALLABLE_CHECK_NO_ACCESS (1<<1)
|
2005-07-29 04:55:50 +08:00
|
|
|
#define IS_CALLABLE_CHECK_IS_STATIC (1<<2)
|
2008-07-26 21:14:04 +08:00
|
|
|
#define IS_CALLABLE_CHECK_SILENT (1<<3)
|
2005-04-27 23:45:36 +08:00
|
|
|
|
2005-12-17 06:15:41 +08:00
|
|
|
#define IS_CALLABLE_STRICT (IS_CALLABLE_CHECK_IS_STATIC)
|
|
|
|
|
2014-03-28 06:11:22 +08:00
|
|
|
ZEND_API zend_bool zend_is_callable_ex(zval *callable, zend_object *object, uint check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error TSRMLS_DC);
|
2014-02-25 20:03:34 +08:00
|
|
|
ZEND_API zend_bool zend_is_callable(zval *callable, uint check_flags, zend_string **callable_name TSRMLS_DC);
|
|
|
|
ZEND_API zend_bool zend_make_callable(zval *callable, zend_string **callable_name TSRMLS_DC);
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API const char *zend_get_module_version(const char *module_name);
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int zend_get_module_started(const char *module_name);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int zend_declare_property_ex(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *doc_comment TSRMLS_DC);
|
2011-09-13 21:29:35 +08:00
|
|
|
ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, int name_length, const char *value, int access_type TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, int name_length, const char *value, int value_len, int access_type TSRMLS_DC);
|
2003-07-08 00:22:56 +08:00
|
|
|
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, long value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_bool value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_class_constant_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length TSRMLS_DC);
|
|
|
|
ZEND_API int zend_declare_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value TSRMLS_DC);
|
2005-09-01 18:05:32 +08:00
|
|
|
|
2005-01-22 20:23:01 +08:00
|
|
|
ZEND_API void zend_update_class_constants(zend_class_entry *class_type TSRMLS_DC);
|
2011-09-13 21:29:35 +08:00
|
|
|
ZEND_API void zend_update_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zval *value TSRMLS_DC);
|
|
|
|
ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, const char *name, int name_length TSRMLS_DC);
|
|
|
|
ZEND_API void zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC);
|
|
|
|
ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSRMLS_DC);
|
|
|
|
ZEND_API void zend_update_property_double(zend_class_entry *scope, zval *object, const char *name, int name_length, double value TSRMLS_DC);
|
2014-02-21 20:14:42 +08:00
|
|
|
ZEND_API void zend_update_property_str(zend_class_entry *scope, zval *object, const char *name, int name_length, zend_string *value TSRMLS_DC);
|
2011-09-13 21:29:35 +08:00
|
|
|
ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value TSRMLS_DC);
|
|
|
|
ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *value, int value_length TSRMLS_DC);
|
|
|
|
|
|
|
|
ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, int name_length, zval *value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_update_static_property_null(zend_class_entry *scope, const char *name, int name_length TSRMLS_DC);
|
|
|
|
ZEND_API int zend_update_static_property_bool(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_update_static_property_long(zend_class_entry *scope, const char *name, int name_length, long value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_update_static_property_double(zend_class_entry *scope, const char *name, int name_length, double value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_update_static_property_string(zend_class_entry *scope, const char *name, int name_length, const char *value TSRMLS_DC);
|
|
|
|
ZEND_API int zend_update_static_property_stringl(zend_class_entry *scope, const char *name, int name_length, const char *value, int value_length TSRMLS_DC);
|
|
|
|
|
|
|
|
ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zend_bool silent TSRMLS_DC);
|
|
|
|
|
|
|
|
ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, int name_length, zend_bool silent TSRMLS_DC);
|
2005-09-01 18:05:32 +08:00
|
|
|
|
2014-03-28 06:11:22 +08:00
|
|
|
ZEND_API zend_class_entry *zend_get_class_entry(const zend_object *object TSRMLS_DC);
|
|
|
|
ZEND_API zend_string *zend_get_object_classname(const zend_object *object TSRMLS_DC);
|
2006-05-25 18:01:06 +08:00
|
|
|
ZEND_API char *zend_get_type_by_const(int type);
|
2002-04-22 22:22:27 +08:00
|
|
|
|
2014-03-28 06:11:22 +08:00
|
|
|
#define getThis() (Z_OBJ(EG(This)) ? &EG(This) : NULL)
|
1999-05-28 20:06:59 +08:00
|
|
|
|
2000-04-02 00:23:13 +08:00
|
|
|
#define WRONG_PARAM_COUNT ZEND_WRONG_PARAM_COUNT()
|
|
|
|
#define WRONG_PARAM_COUNT_WITH_RETVAL(ret) ZEND_WRONG_PARAM_COUNT_WITH_RETVAL(ret)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define ARG_COUNT(dummy) (param_count)
|
|
|
|
#define ZEND_NUM_ARGS() (param_count)
|
2001-07-30 15:43:02 +08:00
|
|
|
#define ZEND_WRONG_PARAM_COUNT() { zend_wrong_param_count(TSRMLS_C); return; }
|
|
|
|
#define ZEND_WRONG_PARAM_COUNT_WITH_RETVAL(ret) { zend_wrong_param_count(TSRMLS_C); return ret; }
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-02-11 23:59:30 +08:00
|
|
|
#ifndef ZEND_WIN32
|
1999-04-08 02:10:10 +08:00
|
|
|
#define DLEXPORT
|
|
|
|
#endif
|
|
|
|
|
2008-05-27 18:29:33 +08:00
|
|
|
#define array_init(arg) _array_init((arg), 0 ZEND_FILE_LINE_CC)
|
|
|
|
#define array_init_size(arg, size) _array_init((arg), (size) ZEND_FILE_LINE_CC)
|
2001-08-05 09:37:10 +08:00
|
|
|
#define object_init(arg) _object_init((arg) ZEND_FILE_LINE_CC TSRMLS_CC)
|
|
|
|
#define object_init_ex(arg, ce) _object_init_ex((arg), (ce) ZEND_FILE_LINE_CC TSRMLS_CC)
|
2001-08-12 02:26:47 +08:00
|
|
|
#define object_and_properties_init(arg, ce, properties) _object_and_properties_init((arg), (ce), (properties) ZEND_FILE_LINE_CC TSRMLS_CC)
|
2008-05-27 18:29:33 +08:00
|
|
|
ZEND_API int _array_init(zval *arg, uint size ZEND_FILE_LINE_DC);
|
2001-08-05 09:37:10 +08:00
|
|
|
ZEND_API int _object_init(zval *arg ZEND_FILE_LINE_DC TSRMLS_DC);
|
|
|
|
ZEND_API int _object_init_ex(zval *arg, zend_class_entry *ce ZEND_FILE_LINE_DC TSRMLS_DC);
|
2001-08-12 02:26:47 +08:00
|
|
|
ZEND_API int _object_and_properties_init(zval *arg, zend_class_entry *ce, HashTable *properties ZEND_FILE_LINE_DC TSRMLS_DC);
|
2010-05-24 22:11:39 +08:00
|
|
|
ZEND_API void object_properties_init(zend_object *object, zend_class_entry *class_type);
|
2014-04-09 21:51:28 +08:00
|
|
|
ZEND_API void object_properties_init_ex(zend_object *object, HashTable *properties TSRMLS_DC);
|
|
|
|
ZEND_API void object_properties_load(zend_object *object, HashTable *properties TSRMLS_DC);
|
1999-10-04 19:42:46 +08:00
|
|
|
|
2014-06-04 06:11:26 +08:00
|
|
|
ZEND_API void zend_merge_properties(zval *obj, HashTable *properties TSRMLS_DC);
|
2003-08-30 07:27:22 +08:00
|
|
|
|
1999-10-04 19:42:46 +08:00
|
|
|
/* no longer supported */
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int add_assoc_function(zval *arg, const char *key, void (*function_ptr)(INTERNAL_FUNCTION_PARAMETERS));
|
1999-10-04 19:42:46 +08:00
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int add_assoc_long_ex(zval *arg, const char *key, uint key_len, long n);
|
|
|
|
ZEND_API int add_assoc_null_ex(zval *arg, const char *key, uint key_len);
|
|
|
|
ZEND_API int add_assoc_bool_ex(zval *arg, const char *key, uint key_len, int b);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int add_assoc_resource_ex(zval *arg, const char *key, uint key_len, zend_resource *r);
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int add_assoc_double_ex(zval *arg, const char *key, uint key_len, double d);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int add_assoc_str_ex(zval *arg, const char *key, uint key_len, zend_string *str);
|
2014-04-15 19:40:40 +08:00
|
|
|
ZEND_API int add_assoc_string_ex(zval *arg, const char *key, uint key_len, char *str);
|
|
|
|
ZEND_API int add_assoc_stringl_ex(zval *arg, const char *key, uint key_len, char *str, uint length);
|
2007-09-28 02:00:48 +08:00
|
|
|
ZEND_API int add_assoc_zval_ex(zval *arg, const char *key, uint key_len, zval *value);
|
2001-01-21 03:16:38 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define add_assoc_long(__arg, __key, __n) add_assoc_long_ex(__arg, __key, strlen(__key), __n)
|
|
|
|
#define add_assoc_null(__arg, __key) add_assoc_null_ex(__arg, __key, strlen(__key))
|
|
|
|
#define add_assoc_bool(__arg, __key, __b) add_assoc_bool_ex(__arg, __key, strlen(__key), __b)
|
|
|
|
#define add_assoc_resource(__arg, __key, __r) add_assoc_resource_ex(__arg, __key, strlen(__key), __r)
|
|
|
|
#define add_assoc_double(__arg, __key, __d) add_assoc_double_ex(__arg, __key, strlen(__key), __d)
|
|
|
|
#define add_assoc_str(__arg, __key, __str) add_assoc_str_ex(__arg, __key, strlen(__key), __str)
|
2014-04-15 19:40:40 +08:00
|
|
|
#define add_assoc_string(__arg, __key, __str) add_assoc_string_ex(__arg, __key, strlen(__key), __str)
|
|
|
|
#define add_assoc_stringl(__arg, __key, __str, __length) add_assoc_stringl_ex(__arg, __key, strlen(__key), __str, __length)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define add_assoc_zval(__arg, __key, __value) add_assoc_zval_ex(__arg, __key, strlen(__key), __value)
|
1999-10-04 19:42:46 +08:00
|
|
|
|
2001-02-01 05:53:30 +08:00
|
|
|
/* unset() functions are only suported for legacy modules and null() functions should be used */
|
2014-02-10 14:04:30 +08:00
|
|
|
#define add_assoc_unset(__arg, __key) add_assoc_null_ex(__arg, __key, strlen(__key))
|
2001-02-01 05:53:30 +08:00
|
|
|
#define add_index_unset(__arg, __key) add_index_null(__arg, __key)
|
|
|
|
#define add_next_index_unset(__arg) add_next_index_null(__arg)
|
|
|
|
#define add_property_unset(__arg, __key) add_property_null(__arg, __key)
|
|
|
|
|
2005-10-28 22:46:30 +08:00
|
|
|
ZEND_API int add_index_long(zval *arg, ulong idx, long n);
|
|
|
|
ZEND_API int add_index_null(zval *arg, ulong idx);
|
|
|
|
ZEND_API int add_index_bool(zval *arg, ulong idx, int b);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int add_index_resource(zval *arg, ulong idx, zend_resource *r);
|
2005-10-28 22:46:30 +08:00
|
|
|
ZEND_API int add_index_double(zval *arg, ulong idx, double d);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int add_index_str(zval *arg, ulong idx, zend_string *str);
|
2014-04-15 19:40:40 +08:00
|
|
|
ZEND_API int add_index_string(zval *arg, ulong idx, const char *str);
|
|
|
|
ZEND_API int add_index_stringl(zval *arg, ulong idx, const char *str, uint length);
|
2005-10-28 22:46:30 +08:00
|
|
|
ZEND_API int add_index_zval(zval *arg, ulong index, zval *value);
|
1999-10-04 19:42:46 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_next_index_long(zval *arg, long n);
|
2001-02-01 05:53:30 +08:00
|
|
|
ZEND_API int add_next_index_null(zval *arg);
|
1999-10-04 19:42:46 +08:00
|
|
|
ZEND_API int add_next_index_bool(zval *arg, int b);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int add_next_index_resource(zval *arg, zend_resource *r);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_next_index_double(zval *arg, double d);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int add_next_index_str(zval *arg, zend_string *str);
|
2014-04-15 19:40:40 +08:00
|
|
|
ZEND_API int add_next_index_string(zval *arg, const char *str);
|
|
|
|
ZEND_API int add_next_index_stringl(zval *arg, const char *str, uint length);
|
2001-01-21 03:16:38 +08:00
|
|
|
ZEND_API int add_next_index_zval(zval *arg, zval *value);
|
|
|
|
|
2014-04-15 19:40:40 +08:00
|
|
|
ZEND_API zval *add_get_assoc_string_ex(zval *arg, const char *key, uint key_len, const char *str);
|
|
|
|
ZEND_API zval *add_get_assoc_stringl_ex(zval *arg, const char *key, uint key_len, const char *str, uint length);
|
2001-01-21 03:16:38 +08:00
|
|
|
|
2014-04-15 19:40:40 +08:00
|
|
|
#define add_get_assoc_string(__arg, __key, __str) add_get_assoc_string_ex(__arg, __key, strlen(__key), __str)
|
|
|
|
#define add_get_assoc_stringl(__arg, __key, __str, __length) add_get_assoc_stringl_ex(__arg, __key, strlen(__key), __str, __length)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API zval *add_get_index_long(zval *arg, ulong idx, long l);
|
|
|
|
ZEND_API zval *add_get_index_double(zval *arg, ulong idx, double d);
|
|
|
|
ZEND_API zval *add_get_index_str(zval *arg, ulong index, zend_string *str);
|
2014-04-15 19:40:40 +08:00
|
|
|
ZEND_API zval *add_get_index_string(zval *arg, ulong idx, const char *str);
|
|
|
|
ZEND_API zval *add_get_index_stringl(zval *arg, ulong idx, const char *str, uint length);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-04-09 21:51:28 +08:00
|
|
|
ZEND_API int array_set_zval_key(HashTable *ht, zval *key, zval *value TSRMLS_DC);
|
2013-02-17 02:13:36 +08:00
|
|
|
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int add_property_long_ex(zval *arg, const char *key, uint key_len, long l TSRMLS_DC);
|
|
|
|
ZEND_API int add_property_null_ex(zval *arg, const char *key, uint key_len TSRMLS_DC);
|
|
|
|
ZEND_API int add_property_bool_ex(zval *arg, const char *key, uint key_len, int b TSRMLS_DC);
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int add_property_resource_ex(zval *arg, const char *key, uint key_len, zend_resource *r TSRMLS_DC);
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int add_property_double_ex(zval *arg, const char *key, uint key_len, double d TSRMLS_DC);
|
2014-05-15 06:44:47 +08:00
|
|
|
ZEND_API int add_property_str_ex(zval *arg, const char *key, uint key_len, zend_string *str TSRMLS_DC);
|
2014-04-15 19:40:40 +08:00
|
|
|
ZEND_API int add_property_string_ex(zval *arg, const char *key, uint key_len, const char *str TSRMLS_DC);
|
|
|
|
ZEND_API int add_property_stringl_ex(zval *arg, const char *key, uint key_len, const char *str, uint length TSRMLS_DC);
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int add_property_zval_ex(zval *arg, const char *key, uint key_len, zval *value TSRMLS_DC);
|
2003-01-14 20:15:09 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define add_property_long(__arg, __key, __n) add_property_long_ex(__arg, __key, strlen(__key), __n TSRMLS_CC)
|
|
|
|
#define add_property_null(__arg, __key) add_property_null_ex(__arg, __key, strlen(__key) TSRMLS_CC)
|
|
|
|
#define add_property_bool(__arg, __key, __b) add_property_bool_ex(__arg, __key, strlen(__key), __b TSRMLS_CC)
|
|
|
|
#define add_property_resource(__arg, __key, __r) add_property_resource_ex(__arg, __key, strlen(__key), __r TSRMLS_CC)
|
|
|
|
#define add_property_double(__arg, __key, __d) add_property_double_ex(__arg, __key, strlen(__key), __d TSRMLS_CC)
|
2014-05-15 06:44:47 +08:00
|
|
|
#define add_property_str(__arg, __key, __str) add_property_str_ex(__arg, __key, strlen(__key), __str TSRMLS_CC)
|
2014-04-15 19:40:40 +08:00
|
|
|
#define add_property_string(__arg, __key, __str) add_property_string_ex(__arg, __key, strlen(__key), __str TSRMLS_CC)
|
|
|
|
#define add_property_stringl(__arg, __key, __str, __length) add_property_stringl_ex(__arg, __key, strlen(__key), __str, __length TSRMLS_CC)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define add_property_zval(__arg, __key, __value) add_property_zval_ex(__arg, __key, strlen(__key), __value TSRMLS_CC)
|
2001-01-21 03:16:38 +08:00
|
|
|
|
2003-08-05 18:24:40 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int call_user_function(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, zend_uint param_count, zval params[] TSRMLS_DC);
|
2014-03-18 03:15:22 +08:00
|
|
|
ZEND_API int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, zend_uint param_count, zval params[], int no_separation, zend_array *symbol_table TSRMLS_DC);
|
2003-08-05 18:24:40 +08:00
|
|
|
|
2008-08-13 05:45:52 +08:00
|
|
|
ZEND_API extern const zend_fcall_info empty_fcall_info;
|
|
|
|
ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache;
|
2003-08-05 18:24:40 +08:00
|
|
|
|
2006-06-07 17:43:54 +08:00
|
|
|
/** Build zend_call_info/cache from a zval*
|
|
|
|
*
|
|
|
|
* Caller is responsible to provide a return value, otherwise the we will crash.
|
|
|
|
* fci->retval_ptr_ptr = NULL;
|
|
|
|
* In order to pass parameters the following members need to be set:
|
|
|
|
* fci->param_count = 0;
|
|
|
|
* fci->params = NULL;
|
2007-11-03 03:40:39 +08:00
|
|
|
* The callable_name argument may be NULL.
|
2008-02-02 05:27:55 +08:00
|
|
|
* Set check_flags to IS_CALLABLE_STRICT for every new usage!
|
2007-11-03 03:40:39 +08:00
|
|
|
*/
|
2014-02-25 20:03:34 +08:00
|
|
|
ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend_string **callable_name, char **error TSRMLS_DC);
|
2007-11-03 03:40:39 +08:00
|
|
|
|
2013-04-22 21:05:24 +08:00
|
|
|
/** Clear arguments connected with zend_fcall_info *fci
|
2007-11-03 03:40:39 +08:00
|
|
|
* If free_mem is not zero then the params array gets free'd as well
|
|
|
|
*/
|
|
|
|
ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, int free_mem);
|
|
|
|
|
|
|
|
/** Save current arguments from zend_fcall_info *fci
|
|
|
|
* params array will be set to NULL
|
|
|
|
*/
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval **params);
|
2007-11-03 03:40:39 +08:00
|
|
|
|
|
|
|
/** Free arguments connected with zend_fcall_info *fci andset back saved ones.
|
2006-06-07 17:43:54 +08:00
|
|
|
*/
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval *params);
|
2006-06-07 17:43:54 +08:00
|
|
|
|
|
|
|
/** Set or clear the arguments in the zend_call_info struct taking care of
|
|
|
|
* refcount. If args is NULL and arguments are set then those are cleared.
|
|
|
|
*/
|
|
|
|
ZEND_API int zend_fcall_info_args(zend_fcall_info *fci, zval *args TSRMLS_DC);
|
|
|
|
|
2007-11-03 03:40:39 +08:00
|
|
|
/** Set arguments in the zend_fcall_info struct taking care of refcount.
|
|
|
|
* If argc is 0 the arguments which are set will be cleared, else pass
|
|
|
|
* a variable amount of zval** arguments.
|
|
|
|
*/
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int zend_fcall_info_argp(zend_fcall_info *fci TSRMLS_DC, int argc, zval *argv);
|
2007-11-03 03:40:39 +08:00
|
|
|
|
|
|
|
/** Set arguments in the zend_fcall_info struct taking care of refcount.
|
|
|
|
* If argc is 0 the arguments which are set will be cleared, else pass
|
|
|
|
* a variable amount of zval** arguments.
|
|
|
|
*/
|
|
|
|
ZEND_API int zend_fcall_info_argv(zend_fcall_info *fci TSRMLS_DC, int argc, va_list *argv);
|
|
|
|
|
|
|
|
/** Set arguments in the zend_fcall_info struct taking care of refcount.
|
|
|
|
* If argc is 0 the arguments which are set will be cleared, else pass
|
|
|
|
* a variable amount of zval** arguments.
|
|
|
|
*/
|
|
|
|
ZEND_API int zend_fcall_info_argn(zend_fcall_info *fci TSRMLS_DC, int argc, ...);
|
|
|
|
|
2006-06-07 17:43:54 +08:00
|
|
|
/** Call a function using information created by zend_fcall_info_init()/args().
|
2013-04-22 21:05:24 +08:00
|
|
|
* If args is given then those replace the argument info in fci is temporarily.
|
2006-06-07 17:43:54 +08:00
|
|
|
*/
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *retval, zval *args TSRMLS_DC);
|
2006-06-07 17:43:54 +08:00
|
|
|
|
2003-08-05 18:24:40 +08:00
|
|
|
ZEND_API int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TSRMLS_DC);
|
|
|
|
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref, int num_symbol_tables, ...);
|
1999-12-05 00:50:18 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API int zend_delete_global_variable(zend_string *name TSRMLS_DC);
|
2010-04-20 19:16:39 +08:00
|
|
|
|
2014-07-04 22:03:45 +08:00
|
|
|
ZEND_API zend_array *zend_rebuild_symbol_table(TSRMLS_D);
|
2014-04-18 17:46:36 +08:00
|
|
|
ZEND_API void zend_attach_symbol_table(zend_execute_data *execute_data);
|
|
|
|
ZEND_API void zend_detach_symbol_table(zend_execute_data *execute_data);
|
2014-04-02 02:36:17 +08:00
|
|
|
ZEND_API int zend_set_local_var(zend_string *name, zval *value, int force TSRMLS_DC);
|
|
|
|
ZEND_API int zend_set_local_var_str(const char *name, int len, zval *value, int force TSRMLS_DC);
|
2008-04-29 16:15:20 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
ZEND_API zend_string *zend_find_alias_name(zend_class_entry *ce, zend_string *name);
|
|
|
|
ZEND_API zend_string *zend_resolve_method_name(zend_class_entry *ce, zend_function *f);
|
2013-03-21 21:09:30 +08:00
|
|
|
|
2001-08-11 23:56:40 +08:00
|
|
|
#define add_method(arg, key, method) add_assoc_function((arg), (key), (method))
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-09-16 09:36:48 +08:00
|
|
|
ZEND_API ZEND_FUNCTION(display_disabled_function);
|
2003-03-03 09:22:43 +08:00
|
|
|
ZEND_API ZEND_FUNCTION(display_disabled_class);
|
2004-02-20 16:03:27 +08:00
|
|
|
END_EXTERN_C()
|
2002-09-16 09:36:48 +08:00
|
|
|
|
2001-07-10 16:20:20 +08:00
|
|
|
#if ZEND_DEBUG
|
2014-04-15 19:40:40 +08:00
|
|
|
#define CHECK_ZVAL_STRING(str) \
|
|
|
|
if ((str)->val[(str)->len] != '\0') { zend_error(E_WARNING, "String is not zero-terminated (%s)", (str)->val); }
|
|
|
|
#define CHECK_ZVAL_STRING_REL(str) \
|
|
|
|
if ((str)->val[(str)->len] != '\0') { zend_error(E_WARNING, "String is not zero-terminated (%s) (source: %s:%d)", (str)->val ZEND_FILE_LINE_RELAY_CC); }
|
2001-07-10 16:20:20 +08:00
|
|
|
#else
|
|
|
|
#define CHECK_ZVAL_STRING(z)
|
2001-07-16 23:48:31 +08:00
|
|
|
#define CHECK_ZVAL_STRING_REL(z)
|
2001-07-10 16:20:20 +08:00
|
|
|
#endif
|
|
|
|
|
2011-06-07 05:28:16 +08:00
|
|
|
#define CHECK_ZVAL_NULL_PATH(p) (Z_STRLEN_P(p) != strlen(Z_STRVAL_P(p)))
|
|
|
|
#define CHECK_NULL_PATH(p, l) (strlen(p) != l)
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define ZVAL_STRINGL(z, s, l) do { \
|
2014-04-03 19:26:23 +08:00
|
|
|
ZVAL_NEW_STR(z, STR_INIT(s, l, 0)); \
|
2010-04-20 19:16:39 +08:00
|
|
|
} while (0)
|
2001-07-10 16:20:20 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define ZVAL_STRING(z, s) do { \
|
|
|
|
const char *_s = (s); \
|
2014-02-18 05:41:23 +08:00
|
|
|
ZVAL_STRINGL(z, _s, strlen(_s)); \
|
2010-04-20 19:16:39 +08:00
|
|
|
} while (0)
|
2001-07-10 16:20:20 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define ZVAL_EMPTY_STRING(z) do { \
|
2014-04-03 19:26:23 +08:00
|
|
|
ZVAL_INT_STR(z, STR_EMPTY_ALLOC()); \
|
2010-04-20 19:16:39 +08:00
|
|
|
} while (0)
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define ZVAL_PSTRINGL(z, s, l) do { \
|
2014-04-03 19:26:23 +08:00
|
|
|
ZVAL_NEW_STR(z, STR_INIT(s, l, 1)); \
|
2010-04-20 19:16:39 +08:00
|
|
|
} while (0)
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define ZVAL_PSTRING(z, s) do { \
|
|
|
|
const char *_s = (s); \
|
2014-02-18 05:41:23 +08:00
|
|
|
ZVAL_PSTRINGL(z, _s, strlen(_s)); \
|
2014-02-10 14:04:30 +08:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ZVAL_EMPTY_PSTRING(z) do { \
|
2014-02-17 15:50:32 +08:00
|
|
|
ZVAL_PSTRINGL(z, "", 0); \
|
2010-04-20 19:16:39 +08:00
|
|
|
} while (0)
|
2000-01-04 21:56:17 +08:00
|
|
|
|
2013-08-27 01:57:14 +08:00
|
|
|
#define ZVAL_ZVAL(z, zv, copy, dtor) do { \
|
|
|
|
zval *__z = (z); \
|
|
|
|
zval *__zv = (zv); \
|
2014-03-13 21:59:50 +08:00
|
|
|
if (EXPECTED(!Z_ISREF_P(__zv))) { \
|
|
|
|
ZVAL_COPY_VALUE(__z, __zv); \
|
|
|
|
} else { \
|
|
|
|
ZVAL_COPY_VALUE(__z, \
|
|
|
|
Z_REFVAL_P(__zv)); \
|
|
|
|
} \
|
2008-01-25 02:07:45 +08:00
|
|
|
if (copy) { \
|
2014-04-04 06:52:53 +08:00
|
|
|
zval_opt_copy_ctor(__z); \
|
2008-01-25 02:07:45 +08:00
|
|
|
} \
|
|
|
|
if (dtor) { \
|
|
|
|
if (!copy) { \
|
2013-08-27 01:57:14 +08:00
|
|
|
ZVAL_NULL(__zv); \
|
2008-01-25 02:07:45 +08:00
|
|
|
} \
|
2014-02-10 14:04:30 +08:00
|
|
|
zval_ptr_dtor(__zv); \
|
2008-01-25 02:07:45 +08:00
|
|
|
} \
|
2013-08-27 01:57:14 +08:00
|
|
|
} while (0)
|
2003-11-30 02:15:11 +08:00
|
|
|
|
2001-08-11 23:56:40 +08:00
|
|
|
#define RETVAL_BOOL(b) ZVAL_BOOL(return_value, b)
|
2001-07-10 16:20:20 +08:00
|
|
|
#define RETVAL_NULL() ZVAL_NULL(return_value)
|
2001-08-11 23:56:40 +08:00
|
|
|
#define RETVAL_LONG(l) ZVAL_LONG(return_value, l)
|
|
|
|
#define RETVAL_DOUBLE(d) ZVAL_DOUBLE(return_value, d)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define RETVAL_STR(s) ZVAL_STR(return_value, s)
|
2014-04-03 19:26:23 +08:00
|
|
|
#define RETVAL_INT_STR(s) ZVAL_INT_STR(return_value, s)
|
|
|
|
#define RETVAL_NEW_STR(s) ZVAL_NEW_STR(return_value, s)
|
2014-02-10 14:04:30 +08:00
|
|
|
#define RETVAL_STRING(s) ZVAL_STRING(return_value, s)
|
|
|
|
#define RETVAL_STRINGL(s, l) ZVAL_STRINGL(return_value, s, l)
|
2001-07-10 16:20:20 +08:00
|
|
|
#define RETVAL_EMPTY_STRING() ZVAL_EMPTY_STRING(return_value)
|
2014-02-14 17:40:11 +08:00
|
|
|
#define RETVAL_RES(r) ZVAL_RES(return_value, r)
|
2014-05-11 14:53:18 +08:00
|
|
|
#define RETVAL_OBJ(r) ZVAL_OBJ(return_value, r)
|
2003-11-30 02:15:11 +08:00
|
|
|
#define RETVAL_ZVAL(zv, copy, dtor) ZVAL_ZVAL(return_value, zv, copy, dtor)
|
2001-08-11 23:56:40 +08:00
|
|
|
#define RETVAL_FALSE ZVAL_BOOL(return_value, 0)
|
|
|
|
#define RETVAL_TRUE ZVAL_BOOL(return_value, 1)
|
2001-07-10 16:20:20 +08:00
|
|
|
|
|
|
|
#define RETURN_BOOL(b) { RETVAL_BOOL(b); return; }
|
|
|
|
#define RETURN_NULL() { RETVAL_NULL(); return;}
|
|
|
|
#define RETURN_LONG(l) { RETVAL_LONG(l); return; }
|
|
|
|
#define RETURN_DOUBLE(d) { RETVAL_DOUBLE(d); return; }
|
2014-02-10 14:04:30 +08:00
|
|
|
#define RETURN_STR(s) { RETVAL_STR(s); return; }
|
2014-04-03 19:26:23 +08:00
|
|
|
#define RETURN_INT_STR(s) { RETVAL_INT_STR(s); return; }
|
|
|
|
#define RETURN_NEW_STR(s) { RETVAL_NEW_STR(s); return; }
|
2014-02-10 14:04:30 +08:00
|
|
|
#define RETURN_STRING(s) { RETVAL_STRING(s); return; }
|
|
|
|
#define RETURN_STRINGL(s, l) { RETVAL_STRINGL(s, l); return; }
|
2001-07-10 16:20:20 +08:00
|
|
|
#define RETURN_EMPTY_STRING() { RETVAL_EMPTY_STRING(); return; }
|
2014-02-14 17:40:11 +08:00
|
|
|
#define RETURN_RES(r) { RETVAL_RES(r); return; }
|
2014-05-11 14:53:18 +08:00
|
|
|
#define RETURN_OBJ(r) { RETVAL_OBJ(r); return; }
|
2003-11-30 02:15:11 +08:00
|
|
|
#define RETURN_ZVAL(zv, copy, dtor) { RETVAL_ZVAL(zv, copy, dtor); return; }
|
2001-07-10 16:20:20 +08:00
|
|
|
#define RETURN_FALSE { RETVAL_FALSE; return; }
|
|
|
|
#define RETURN_TRUE { RETVAL_TRUE; return; }
|
1999-05-27 09:44:17 +08:00
|
|
|
|
2013-08-27 01:06:36 +08:00
|
|
|
#define RETVAL_ZVAL_FAST(z) do { \
|
|
|
|
zval *_z = (z); \
|
|
|
|
if (Z_ISREF_P(_z)) { \
|
|
|
|
RETVAL_ZVAL(_z, 1, 0); \
|
|
|
|
} else { \
|
2014-02-10 14:04:30 +08:00
|
|
|
zval_ptr_dtor(return_value); \
|
|
|
|
ZVAL_COPY(return_value, _z); \
|
2013-08-27 01:06:36 +08:00
|
|
|
} \
|
|
|
|
} while (0)
|
2014-02-10 14:04:30 +08:00
|
|
|
|
2014-07-09 15:57:42 +08:00
|
|
|
/* May be used in internal constructors to make them return NULL */
|
|
|
|
#if 1 // support for directly called constructors only ???
|
|
|
|
#define ZEND_CTOR_MAKE_NULL() do { \
|
|
|
|
if (EG(current_execute_data)->return_value) { \
|
|
|
|
zval_ptr_dtor(EG(current_execute_data)->return_value); \
|
|
|
|
ZVAL_NULL(EG(current_execute_data)->return_value); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#else // attempt to support calls to parent::__construct() ???
|
|
|
|
#define ZEND_CTOR_MAKE_NULL() do { \
|
|
|
|
if (EG(current_execute_data)->return_value) { \
|
|
|
|
zval_ptr_dtor(EG(current_execute_data)->return_value); \
|
|
|
|
ZVAL_NULL(EG(current_execute_data)->return_value); \
|
|
|
|
} else if (EG(current_execute_data)->prev_execute_data && \
|
|
|
|
EG(current_execute_data)->prev_execute_data->object == \
|
|
|
|
EG(current_execute_data)->object) { \
|
|
|
|
EG(current_execute_data)->prev_execute_data->object = NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2013-08-27 01:06:36 +08:00
|
|
|
#define RETURN_ZVAL_FAST(z) { RETVAL_ZVAL_FAST(z); return; }
|
|
|
|
|
2006-05-10 07:53:23 +08:00
|
|
|
#define HASH_OF(p) (Z_TYPE_P(p)==IS_ARRAY ? Z_ARRVAL_P(p) : ((Z_TYPE_P(p)==IS_OBJECT ? Z_OBJ_HT_P(p)->get_properties((p) TSRMLS_CC) : NULL)))
|
2014-02-14 17:05:04 +08:00
|
|
|
#define ZVAL_IS_NULL(z) (Z_TYPE_P(z) == IS_NULL)
|
1999-09-21 00:56:09 +08:00
|
|
|
|
2001-08-11 00:19:49 +08:00
|
|
|
/* For compatibility */
|
|
|
|
#define ZEND_MINIT ZEND_MODULE_STARTUP_N
|
|
|
|
#define ZEND_MSHUTDOWN ZEND_MODULE_SHUTDOWN_N
|
|
|
|
#define ZEND_RINIT ZEND_MODULE_ACTIVATE_N
|
|
|
|
#define ZEND_RSHUTDOWN ZEND_MODULE_DEACTIVATE_N
|
|
|
|
#define ZEND_MINFO ZEND_MODULE_INFO_N
|
2006-06-15 22:03:21 +08:00
|
|
|
#define ZEND_GINIT(module) ((void (*)(void* TSRMLS_DC))(ZEND_MODULE_GLOBALS_CTOR_N(module)))
|
|
|
|
#define ZEND_GSHUTDOWN(module) ((void (*)(void* TSRMLS_DC))(ZEND_MODULE_GLOBALS_DTOR_N(module)))
|
2001-08-11 00:19:49 +08:00
|
|
|
|
|
|
|
#define ZEND_MINIT_FUNCTION ZEND_MODULE_STARTUP_D
|
2001-08-12 22:58:57 +08:00
|
|
|
#define ZEND_MSHUTDOWN_FUNCTION ZEND_MODULE_SHUTDOWN_D
|
|
|
|
#define ZEND_RINIT_FUNCTION ZEND_MODULE_ACTIVATE_D
|
|
|
|
#define ZEND_RSHUTDOWN_FUNCTION ZEND_MODULE_DEACTIVATE_D
|
|
|
|
#define ZEND_MINFO_FUNCTION ZEND_MODULE_INFO_D
|
2006-06-15 22:03:21 +08:00
|
|
|
#define ZEND_GINIT_FUNCTION ZEND_MODULE_GLOBALS_CTOR_D
|
|
|
|
#define ZEND_GSHUTDOWN_FUNCTION ZEND_MODULE_GLOBALS_DTOR_D
|
2001-08-11 00:19:49 +08:00
|
|
|
|
2014-07-11 20:32:20 +08:00
|
|
|
/* Fast parameter parsing API */
|
|
|
|
|
|
|
|
/* TODO: This API is experemental. It may be changed or removed ???
|
|
|
|
* It should be used only for really often used functions.
|
|
|
|
* (Keep the original parsing code and wrap usage with #ifndef FAST_ZPP)
|
|
|
|
*/
|
|
|
|
#define FAST_ZPP 1
|
|
|
|
|
|
|
|
#ifdef FAST_ZPP
|
|
|
|
|
|
|
|
#define Z_EXPECTED_TYPES(_) \
|
|
|
|
_(Z_EXPECTED_LONG, "long") \
|
|
|
|
_(Z_EXPECTED_BOOL, "boolean") \
|
|
|
|
_(Z_EXPECTED_STRING, "string") \
|
|
|
|
_(Z_EXPECTED_ARRAY, "array") \
|
|
|
|
_(Z_EXPECTED_FUNC, "valid callback") \
|
|
|
|
_(Z_EXPECTED_RESOURCE, "resource") \
|
|
|
|
_(Z_EXPECTED_PATH, "a valid path") \
|
|
|
|
_(Z_EXPECTED_OBJECT, "object") \
|
|
|
|
_(Z_EXPECTED_DOUBLE, "double")
|
|
|
|
|
|
|
|
#define Z_EXPECTED_TYPE_ENUM(id, str) id,
|
|
|
|
#define Z_EXPECTED_TYPE_STR(id, str) str,
|
|
|
|
|
|
|
|
typedef enum _zend_expected_type {
|
|
|
|
Z_EXPECTED_TYPES(Z_EXPECTED_TYPE_ENUM)
|
|
|
|
Z_EXPECTED_LAST
|
|
|
|
} zend_expected_type;
|
|
|
|
|
|
|
|
ZEND_API int parse_arg_object_to_str(zval *arg, zend_string **str, int type TSRMLS_DC);
|
|
|
|
ZEND_API void zend_wrong_paramers_count_error(int num_args, int min_num_args, int max_num_args TSRMLS_DC);
|
|
|
|
ZEND_API void zend_wrong_paramer_type_error(int num, zend_expected_type expected_type, zval *arg TSRMLS_DC);
|
|
|
|
ZEND_API void zend_wrong_paramer_class_error(int num, char *name, zval *arg TSRMLS_DC);
|
|
|
|
ZEND_API void zend_wrong_callback_error(int severity, int num, char *error TSRMLS_DC);
|
2014-07-14 18:25:04 +08:00
|
|
|
ZEND_API int _z_param_class(zval *arg, zend_class_entry **pce, int num, int check_null TSRMLS_DC);
|
2014-07-11 20:32:20 +08:00
|
|
|
|
|
|
|
#define ZEND_PARSE_PARAMETERS_START_EX(flags, min_num_args, max_num_args) do { \
|
|
|
|
const int _flags = (flags); \
|
|
|
|
int _min_num_args = (min_num_args); \
|
|
|
|
int _max_num_args = (max_num_args); \
|
|
|
|
int _num_args = EG(current_execute_data)->num_args; \
|
|
|
|
int _i; \
|
|
|
|
zval *_real_arg, *_arg; \
|
|
|
|
zend_expected_type _expected_type; \
|
|
|
|
char *_error; \
|
|
|
|
zend_bool _dummy; \
|
|
|
|
((void)_i); \
|
|
|
|
((void)_real_arg); \
|
|
|
|
((void)_arg); \
|
|
|
|
((void)_expected_type); \
|
|
|
|
((void)_error); \
|
|
|
|
((void)_dummy); \
|
|
|
|
if (UNEXPECTED(_num_args < _min_num_args) || \
|
|
|
|
(UNEXPECTED(_num_args > _max_num_args) && \
|
|
|
|
EXPECTED(_max_num_args >= 0))) { \
|
|
|
|
if (!(_flags & ZEND_PARSE_PARAMS_QUIET)) { \
|
2014-07-14 18:25:04 +08:00
|
|
|
zend_wrong_paramers_count_error(_num_args, _min_num_args, _max_num_args TSRMLS_CC); \
|
2014-07-11 20:32:20 +08:00
|
|
|
} \
|
|
|
|
goto zend_parse_params_failure; \
|
|
|
|
} \
|
|
|
|
_i = 0; \
|
|
|
|
_real_arg = ZEND_CALL_ARG(EG(current_execute_data), 0);
|
|
|
|
|
|
|
|
#define ZEND_PARSE_PARAMETERS_START(min_num_args, max_num_args) \
|
|
|
|
ZEND_PARSE_PARAMETERS_START_EX(0, min_num_args, max_num_args)
|
|
|
|
|
|
|
|
#define ZEND_PARSE_PARAMETERS_END_EX(failure) \
|
|
|
|
if (0) { \
|
|
|
|
zend_parse_params_wrong_callback: ZEND_ATTRIBUTE_UNUSED_LABEL \
|
|
|
|
if (!(_flags & ZEND_PARSE_PARAMS_QUIET)) { \
|
2014-07-14 18:25:04 +08:00
|
|
|
zend_wrong_callback_error(E_WARNING, _i, _error TSRMLS_CC); \
|
2014-07-11 20:32:20 +08:00
|
|
|
} \
|
|
|
|
goto zend_parse_params_failure; \
|
|
|
|
zend_parse_params_wrong_class: ZEND_ATTRIBUTE_UNUSED_LABEL \
|
|
|
|
if (!(_flags & ZEND_PARSE_PARAMS_QUIET)) { \
|
2014-07-14 18:25:04 +08:00
|
|
|
zend_wrong_paramer_class_error(_i, _error, _arg TSRMLS_CC); \
|
2014-07-11 20:32:20 +08:00
|
|
|
} \
|
|
|
|
goto zend_parse_params_failure; \
|
|
|
|
zend_parse_params_wrong_arg: ZEND_ATTRIBUTE_UNUSED_LABEL \
|
|
|
|
if (!(_flags & ZEND_PARSE_PARAMS_QUIET)) { \
|
2014-07-14 18:25:04 +08:00
|
|
|
zend_wrong_paramer_type_error(_i, _expected_type, _arg TSRMLS_CC); \
|
2014-07-11 20:32:20 +08:00
|
|
|
} \
|
|
|
|
zend_parse_params_failure: ZEND_ATTRIBUTE_UNUSED_LABEL \
|
|
|
|
failure; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ZEND_PARSE_PARAMETERS_END() \
|
|
|
|
ZEND_PARSE_PARAMETERS_END_EX(return)
|
|
|
|
|
|
|
|
#define Z_PARAM_PROLOGUE(separate) \
|
|
|
|
if (UNEXPECTED(++_i >_num_args)) break; \
|
|
|
|
_real_arg++; \
|
|
|
|
_arg = _real_arg; \
|
|
|
|
ZVAL_DEREF(_arg); \
|
|
|
|
if (separate) { \
|
|
|
|
SEPARATE_ZVAL_NOREF(_arg); \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* old "|" */
|
|
|
|
#define Z_PARAM_OPTIONAL
|
|
|
|
|
|
|
|
/* old "a" */
|
|
|
|
#define Z_PARAM_ARRAY_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
if (!_z_param_array(_arg, &dest, check_null, 0)) { \
|
|
|
|
_expected_type = Z_EXPECTED_ARRAY; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_ARRAY(dest) \
|
|
|
|
Z_PARAM_ARRAY_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "A" */
|
|
|
|
#define Z_PARAM_ARRAY_OR_OBJECT_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
if (!_z_param_array(_arg, &dest, check_null, 1)) { \
|
|
|
|
_expected_type = Z_EXPECTED_ARRAY; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_ARRAY_OR_OBJECT(dest, check_null, separate) \
|
|
|
|
Z_PARAM_ARRAY_OR_OBJECT_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "b" */
|
|
|
|
#define Z_PARAM_BOOL_EX(dest, is_null, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_bool(_arg, &dest, &is_null, check_null TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_BOOL; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_BOOL(dest) \
|
|
|
|
Z_PARAM_BOOL_EX(dest, _dummy, 0, 0)
|
|
|
|
|
|
|
|
/* old "C" */
|
|
|
|
#define Z_PARAM_CLASS_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
if (!_z_param_class(_arg, &dest, _i, check_null TSRMLS_CC)) { \
|
|
|
|
goto zend_parse_params_failure; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_CLASS(dest) \
|
|
|
|
Z_PARAM_CLASS_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "d" */
|
|
|
|
#define Z_PARAM_DOUBLE_EX(dest, is_null, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
if (!_z_param_double(_arg, &dest, &is_null, check_null)) { \
|
|
|
|
_expected_type = Z_EXPECTED_DOUBLE; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_DOUBLE(dest) \
|
|
|
|
Z_PARAM_DOUBLE_EX(dest, _dummy, 0, 0)
|
|
|
|
|
|
|
|
/* old "f" */
|
|
|
|
#define Z_PARAM_FUNC_EX(dest_fci, dest_fcc, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_func(_arg, &dest_fci, &dest_fcc, check_null, &_error TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
if (!_error) { \
|
|
|
|
_expected_type = Z_EXPECTED_FUNC; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} else { \
|
|
|
|
goto zend_parse_params_wrong_callback; \
|
|
|
|
} \
|
|
|
|
} else if (_error) { \
|
2014-07-14 18:25:04 +08:00
|
|
|
zend_wrong_callback_error(E_STRICT, _i, _error TSRMLS_CC); \
|
2014-07-11 20:32:20 +08:00
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_FUNC(dest_fci, dest_fcc) \
|
|
|
|
Z_PARAM_FUNC_EX(dest_fci, dest_fcc, 0, 0)
|
|
|
|
|
|
|
|
/* old "h" */
|
|
|
|
#define Z_PARAM_ARRAY_HT_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_array_ht(_arg, &dest, check_null, 0 TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_ARRAY; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_ARRAY_HT(dest) \
|
|
|
|
Z_PARAM_ARRAY_HT_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "H" */
|
|
|
|
#define Z_PARAM_ARRAY_OR_OBJECT_HT_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_array_ht(_arg, &dest, check_null, 1 TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_ARRAY; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_ARRAY_OR_OBJECT_HT(dest) \
|
|
|
|
Z_PARAM_ARRAY_OR_OBJECT_HT_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "l" */
|
|
|
|
#define Z_PARAM_LONG_EX(dest, is_null, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
if (!_z_param_long(_arg, &dest, &is_null, check_null, 0)) { \
|
|
|
|
_expected_type = Z_EXPECTED_LONG; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_LONG(dest) \
|
|
|
|
Z_PARAM_LONG_EX(dest, _dummy, 0, 0)
|
|
|
|
|
|
|
|
/* old "L" */
|
|
|
|
#define Z_PARAM_STRICT_LONG_EX(dest, is_null, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
if (!_z_param_long(_arg, &dest, &is_null, check_null, 1)) { \
|
|
|
|
_expected_type = Z_EXPECTED_LONG; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_STRICT_LONG(dest) \
|
|
|
|
Z_PARAM_STRICT_LONG_EX(dest, _dummy, 0, 0)
|
|
|
|
|
|
|
|
/* old "o" */
|
|
|
|
#define Z_PARAM_OBJECT_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_object(_arg, &dest, NULL, check_null TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_OBJECT; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_OBJECT(dest) \
|
|
|
|
Z_PARAM_OBJECT_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "O" */
|
|
|
|
#define Z_PARAM_OBJECT_OF_CLASS_EX(dest, _ce, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_object(_arg, &dest, _ce, check_null TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
if (_ce) { \
|
|
|
|
_error = (_ce)->name->val; \
|
|
|
|
goto zend_parse_params_wrong_class; \
|
|
|
|
} else { \
|
|
|
|
_expected_type = Z_EXPECTED_OBJECT; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_OBJECT_OF_CLASS(dest, _ce) \
|
|
|
|
Z_PARAM_OBJECT_OF_CLASS_EX(dest, _ce, 0, 0)
|
|
|
|
|
|
|
|
/* old "p" */
|
|
|
|
#define Z_PARAM_PATH_EX(dest, dest_len, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_path(_arg, &dest, &dest_len, check_null TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_PATH; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_PATH(dest, dest_len) \
|
|
|
|
Z_PARAM_PATH_EX(dest, dest_len, 0, 0)
|
|
|
|
|
|
|
|
/* old "P" */
|
|
|
|
#define Z_PARAM_PATH_STR_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_path_str(_arg, &dest, check_null TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_PATH; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_PATH_STR(dest) \
|
|
|
|
Z_PARAM_PATH_STR_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "r" */
|
|
|
|
#define Z_PARAM_RESOURCE_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
if (!_z_param_resource(_arg, &dest, check_null)) { \
|
|
|
|
_expected_type = Z_EXPECTED_RESOURCE; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_RESOURCE(dest) \
|
|
|
|
Z_PARAM_RESOURCE_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "s" */
|
|
|
|
#define Z_PARAM_STRING_EX(dest, dest_len, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_string(_arg, &dest, &dest_len, check_null TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_STRING; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_STRING(dest, dest_len) \
|
|
|
|
Z_PARAM_STRING_EX(dest, dest_len, 0, 0)
|
|
|
|
|
|
|
|
/* old "S" */
|
|
|
|
#define Z_PARAM_STR_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_str(_arg, &dest, check_null TSRMLS_CC)) { \
|
2014-07-11 20:32:20 +08:00
|
|
|
_expected_type = Z_EXPECTED_STRING; \
|
|
|
|
goto zend_parse_params_wrong_arg; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_STR(dest) \
|
|
|
|
Z_PARAM_STR_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "z" */
|
|
|
|
#define Z_PARAM_ZVAL_EX(dest, check_null, separate) do { \
|
|
|
|
if (separate) { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
_z_param_zval_deref(_arg, &dest, check_null); \
|
|
|
|
} else { \
|
|
|
|
if (UNEXPECTED(++_i >_num_args)) break; \
|
|
|
|
_real_arg++; \
|
|
|
|
_z_param_zval(_real_arg, &dest, check_null); \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_ZVAL(dest) \
|
|
|
|
Z_PARAM_ZVAL_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "z" (with dereference) */
|
|
|
|
#define Z_PARAM_ZVAL_DEREF_EX(dest, check_null, separate) do { \
|
|
|
|
Z_PARAM_PROLOGUE(separate); \
|
|
|
|
_z_param_zval_deref(_arg, &dest, check_null); \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_ZVAL_DEREF(dest) \
|
|
|
|
Z_PARAM_ZVAL_DEREF_EX(dest, 0, 0)
|
|
|
|
|
|
|
|
/* old "+" and "*" */
|
|
|
|
#define Z_PARAM_VARIADIC_EX(spec, dest, dest_num, post_varargs) do { \
|
|
|
|
int _num_varargs = _num_args - _i - (post_varargs); \
|
|
|
|
if (_num_varargs > 0) { \
|
|
|
|
dest = _real_arg + 1; \
|
|
|
|
dest_num = _num_varargs; \
|
|
|
|
_i += _num_varargs; \
|
|
|
|
_real_arg += _num_varargs; \
|
|
|
|
} else { \
|
|
|
|
dest = NULL; \
|
|
|
|
dest_num = 0; \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define Z_PARAM_VARIADIC(spec, dest, dest_num) \
|
|
|
|
Z_PARAM_VARIADIC_EX(spec, dest, dest_num, 0)
|
|
|
|
|
|
|
|
/* Private part of new parameter parsing API */
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_bool(zval *arg, zend_bool *dest, zend_bool *is_null, int check_null TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
|
|
|
if (check_null) {
|
|
|
|
*is_null = 0;
|
|
|
|
}
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_TRUE)) {
|
|
|
|
*dest = 1;
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) < IS_TRUE)) {
|
|
|
|
if (check_null) {
|
|
|
|
*is_null = (Z_TYPE_P(arg) == IS_NULL);
|
|
|
|
}
|
|
|
|
*dest = 0;
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) <= IS_STRING)) {
|
2014-07-14 18:25:04 +08:00
|
|
|
*dest = zend_is_true(arg TSRMLS_CC);
|
2014-07-11 20:32:20 +08:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline int _z_param_long(zval *arg, long *dest, zend_bool *is_null, int check_null, int strict)
|
|
|
|
{
|
|
|
|
if (check_null) {
|
|
|
|
*is_null = 0;
|
|
|
|
}
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_LONG)) {
|
|
|
|
if (strict && UNEXPECTED(Z_DVAL_P(arg) > LONG_MAX)) {
|
|
|
|
*dest = LONG_MAX;
|
|
|
|
} else if (strict && UNEXPECTED(Z_DVAL_P(arg) < LONG_MIN)) {
|
|
|
|
*dest = LONG_MIN;
|
|
|
|
} else {
|
|
|
|
*dest = Z_LVAL_P(arg);
|
|
|
|
}
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) == IS_DOUBLE)) {
|
|
|
|
*dest = zend_dval_to_lval(Z_DVAL_P(arg));
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) == IS_STRING)) {
|
|
|
|
double d;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
if (UNEXPECTED((type = is_numeric_str_function(Z_STR_P(arg), dest, &d)) != IS_LONG)) {
|
|
|
|
if (EXPECTED(type != 0)) {
|
|
|
|
if (strict && UNEXPECTED(d > LONG_MAX)) {
|
|
|
|
*dest = LONG_MAX;
|
|
|
|
} else if (strict && UNEXPECTED(d < LONG_MIN)) {
|
|
|
|
*dest = LONG_MIN;
|
|
|
|
} else {
|
|
|
|
*dest = zend_dval_to_lval(d);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) < IS_TRUE)) {
|
|
|
|
if (check_null) {
|
|
|
|
*is_null = (Z_TYPE_P(arg) == IS_NULL);
|
|
|
|
}
|
|
|
|
*dest = 0;
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) == IS_TRUE)) {
|
|
|
|
*dest = 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline int _z_param_double(zval *arg, double *dest, zend_bool *is_null, int check_null)
|
|
|
|
{
|
|
|
|
if (check_null) {
|
|
|
|
*is_null = 0;
|
|
|
|
}
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_DOUBLE)) {
|
|
|
|
*dest = Z_DVAL_P(arg);
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) == IS_LONG)) {
|
|
|
|
*dest = (double)Z_LVAL_P(arg);
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) == IS_STRING)) {
|
|
|
|
long l;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
if (UNEXPECTED((type = is_numeric_str_function(Z_STR_P(arg), &l, dest)) != IS_DOUBLE)) {
|
|
|
|
if (EXPECTED(type != 0)) {
|
|
|
|
*dest = (double)(l);
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) < IS_TRUE)) {
|
|
|
|
if (check_null) {
|
|
|
|
*is_null = (Z_TYPE_P(arg) == IS_NULL);
|
|
|
|
}
|
|
|
|
*dest = 0.0;
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) == IS_TRUE)) {
|
|
|
|
*dest = 1.0;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_str(zval *arg, zend_string **dest, int check_null TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_STRING)) {
|
|
|
|
*dest = Z_STR_P(arg);
|
|
|
|
} else if (EXPECTED(Z_TYPE_P(arg) < IS_STRING)) {
|
|
|
|
if (check_null && UNEXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
|
|
|
|
*dest = NULL;
|
|
|
|
} else {
|
|
|
|
if (Z_COPYABLE_P(arg) && Z_REFCOUNT_P(arg) > 1) {
|
|
|
|
Z_DELREF_P(arg);
|
|
|
|
zval_copy_ctor_func(arg);
|
|
|
|
}
|
|
|
|
convert_to_string(arg);
|
|
|
|
*dest = Z_STR_P(arg);
|
|
|
|
}
|
|
|
|
} else if (UNEXPECTED(Z_TYPE_P(arg) != IS_OBJECT) ||
|
|
|
|
UNEXPECTED(parse_arg_object_to_str(arg, dest, IS_STRING TSRMLS_CC) != SUCCESS)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_string(zval *arg, char **dest, int *dest_len, int check_null TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
|
|
|
zend_string *str;
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_str(arg, &str, check_null TSRMLS_CC)) {
|
2014-07-11 20:32:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (check_null && UNEXPECTED(!str)) {
|
|
|
|
*dest = NULL;
|
|
|
|
*dest_len = 0;
|
|
|
|
} else {
|
|
|
|
*dest = str->val;
|
|
|
|
*dest_len = str->len;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_path_str(zval *arg, zend_string **dest, int check_null TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_str(arg, dest, check_null TSRMLS_CC) ||
|
2014-07-11 20:32:20 +08:00
|
|
|
(check_null && UNEXPECTED(!(*dest)->val)) ||
|
|
|
|
UNEXPECTED(CHECK_NULL_PATH((*dest)->val, (*dest)->len))) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_path(zval *arg, char **dest, int *dest_len, int check_null TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
|
|
|
zend_string *str;
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
if (!_z_param_path_str(arg, &str, check_null TSRMLS_CC)) {
|
2014-07-11 20:32:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (check_null && UNEXPECTED(!str)) {
|
|
|
|
*dest = NULL;
|
|
|
|
*dest_len = 0;
|
|
|
|
} else {
|
|
|
|
*dest = str->val;
|
|
|
|
*dest_len = str->len;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline int _z_param_array(zval *arg, zval **dest, int check_null, int or_object)
|
|
|
|
{
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY) ||
|
|
|
|
(or_object && EXPECTED(Z_TYPE_P(arg) == IS_OBJECT))) {
|
|
|
|
*dest = arg;
|
|
|
|
} else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
|
|
|
|
*dest = NULL;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_array_ht(zval *arg, HashTable **dest, int check_null, int or_object TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY)) {
|
|
|
|
*dest = Z_ARRVAL_P(arg);
|
|
|
|
} else if (or_object && EXPECTED(Z_TYPE_P(arg) == IS_OBJECT)) {
|
|
|
|
*dest = Z_OBJ_HT_P(arg)->get_properties(arg TSRMLS_CC);
|
|
|
|
} else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
|
|
|
|
*dest = NULL;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_object(zval *arg, zval **dest, zend_class_entry *ce, int check_null TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT) &&
|
|
|
|
(!ce || EXPECTED(instanceof_function(Z_OBJCE_P(arg), ce TSRMLS_CC) != 0))) {
|
|
|
|
*dest = arg;
|
|
|
|
} else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
|
|
|
|
*dest = NULL;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline int _z_param_resource(zval *arg, zval **dest, int check_null)
|
|
|
|
{
|
|
|
|
if (EXPECTED(Z_TYPE_P(arg) == IS_RESOURCE)) {
|
|
|
|
*dest = arg;
|
|
|
|
} else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
|
|
|
|
*dest = NULL;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:25:04 +08:00
|
|
|
static zend_always_inline int _z_param_func(zval *arg, zend_fcall_info *dest_fci, zend_fcall_info_cache *dest_fcc, int check_null, char **error TSRMLS_DC)
|
2014-07-11 20:32:20 +08:00
|
|
|
{
|
|
|
|
if (check_null && UNEXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
|
|
|
|
dest_fci->size = 0;
|
|
|
|
dest_fcc->initialized = 0;
|
|
|
|
*error = NULL;
|
|
|
|
} else if (UNEXPECTED(zend_fcall_info_init(arg, 0, dest_fci, dest_fcc, NULL, error TSRMLS_CC) != SUCCESS)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline void _z_param_zval(zval *arg, zval **dest, int check_null)
|
|
|
|
{
|
|
|
|
*dest = (check_null &&
|
|
|
|
(UNEXPECTED(Z_TYPE_P(arg) == IS_NULL) ||
|
|
|
|
(UNEXPECTED(Z_ISREF_P(arg)) &&
|
|
|
|
UNEXPECTED(Z_TYPE_P(Z_REFVAL_P(arg)) == IS_NULL)))) ? NULL : arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline void _z_param_zval_deref(zval *arg, zval **dest, int check_null)
|
|
|
|
{
|
|
|
|
*dest = (check_null && UNEXPECTED(Z_TYPE_P(arg) == IS_NULL)) ? NULL : arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* FAST_ZPP */
|
|
|
|
|
|
|
|
/* End of new parameter parsing API */
|
|
|
|
|
2002-05-20 15:17:30 +08:00
|
|
|
END_EXTERN_C()
|
2006-05-10 07:53:23 +08:00
|
|
|
|
2000-07-03 07:54:19 +08:00
|
|
|
#endif /* ZEND_API_H */
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-08-11 00:19:49 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
2003-02-01 09:49:15 +08:00
|
|
|
* indent-tabs-mode: t
|
1999-04-08 02:10:10 +08:00
|
|
|
* End:
|
|
|
|
*/
|