1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2000-03-06 13:26:39 +08:00
|
|
|
| Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-03-06 13:26:39 +08:00
|
|
|
| This source file is subject to version 0.92 of the Zend license, |
|
1999-07-16 22:58:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2000-03-06 13:26:39 +08:00
|
|
|
| http://www.zend.com/license/0_92.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> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
1999-07-16 22:58:16 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#ifndef _ZEND_API_H
|
|
|
|
#define _ZEND_API_H
|
|
|
|
|
|
|
|
#include "modules.h"
|
|
|
|
#include "zend_list.h"
|
1999-12-28 03:07:33 +08:00
|
|
|
#include "zend_fast_cache.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
1999-04-18 23:11:52 +08:00
|
|
|
#define ZEND_NAMED_FUNCTION(name) void name(INTERNAL_FUNCTION_PARAMETERS)
|
|
|
|
#define ZEND_FUNCTION(name) ZEND_NAMED_FUNCTION(zend_if_##name)
|
|
|
|
|
|
|
|
#define ZEND_NAMED_FE(runtime_name, name, arg_types) { #runtime_name, name, arg_types },
|
|
|
|
#define ZEND_FE(name, arg_types) ZEND_NAMED_FE(name, zend_if_##name, arg_types)
|
|
|
|
|
|
|
|
|
1999-05-28 20:06:59 +08:00
|
|
|
#define INIT_CLASS_ENTRY(class_container, class_name, functions) \
|
|
|
|
{ \
|
|
|
|
class_container.name = strdup(class_name); \
|
|
|
|
class_container.name_length = sizeof(class_name)-1; \
|
|
|
|
class_container.builtin_functions = functions; \
|
|
|
|
class_container.handle_function_call = NULL; \
|
|
|
|
class_container.handle_property_get = NULL; \
|
|
|
|
class_container.handle_property_set = NULL; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, handle_fcall, handle_propget, handle_propset) \
|
|
|
|
{ \
|
|
|
|
class_container.name = strdup(class_name); \
|
|
|
|
class_container.name_length = sizeof(class_name)-1; \
|
|
|
|
class_container.builtin_functions = functions; \
|
|
|
|
class_container.handle_function_call = handle_fcall; \
|
|
|
|
class_container.handle_property_get = handle_propget; \
|
|
|
|
class_container.handle_property_set = handle_propset; \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
int zend_next_free_module(void);
|
|
|
|
|
2000-02-19 21:11:39 +08:00
|
|
|
ZEND_API int zend_get_parameters(int ht, int param_count, ...);
|
1999-12-19 06:23:23 +08:00
|
|
|
ZEND_API int zend_get_parameters_array(int ht, int param_count, zval **argument_array);
|
2000-02-19 21:11:39 +08:00
|
|
|
ZEND_API int zend_get_parameters_ex(int param_count, ...);
|
1999-12-19 06:23:23 +08:00
|
|
|
ZEND_API int zend_get_parameters_array_ex(int param_count, zval ***argument_array);
|
1999-04-15 03:53:33 +08:00
|
|
|
|
1999-04-20 02:57:14 +08:00
|
|
|
ZEND_API int ParameterPassedByReference(int ht, uint n);
|
1999-04-15 03:53:33 +08:00
|
|
|
|
1999-05-28 20:06:59 +08:00
|
|
|
int zend_register_functions(zend_function_entry *functions, HashTable *function_table);
|
|
|
|
void zend_unregister_functions(zend_function_entry *functions, int count, HashTable *function_table);
|
1999-04-21 11:49:09 +08:00
|
|
|
ZEND_API int zend_register_module(zend_module_entry *module_entry);
|
1999-05-09 20:24:21 +08:00
|
|
|
ZEND_API zend_class_entry *register_internal_class(zend_class_entry *class_entry);
|
|
|
|
ZEND_API zend_module_entry *zend_get_module(int module_number);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
ZEND_API void wrong_param_count(void);
|
|
|
|
|
1999-05-28 20:06:59 +08:00
|
|
|
#define getThis() (this_ptr)
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#define WRONG_PARAM_COUNT { wrong_param_count(); return; }
|
|
|
|
#define WRONG_PARAM_COUNT_WITH_RETVAL(ret) { wrong_param_count(); return ret; }
|
1999-12-19 06:40:35 +08:00
|
|
|
#define ARG_COUNT(dummy) (ht)
|
|
|
|
#define ZEND_NUM_ARGS() (ht)
|
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
|
|
|
|
|
2000-02-04 02:51:33 +08:00
|
|
|
ZEND_API int zend_startup_module(zend_module_entry *module);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-02-20 03:21:45 +08:00
|
|
|
#define array_init(arg) _array_init((arg) ZEND_FILE_LINE_CC)
|
|
|
|
#define object_init(arg) _object_init((arg) ZEND_FILE_LINE_CC)
|
|
|
|
#define object_init_ex(arg, ce) _object_init_ex((arg), (ce) ZEND_FILE_LINE_CC)
|
|
|
|
ZEND_API int _array_init(zval *arg ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API int _object_init(zval *arg ZEND_FILE_LINE_DC);
|
|
|
|
ZEND_API int _object_init_ex(zval *arg, zend_class_entry *ce ZEND_FILE_LINE_DC);
|
1999-10-04 19:42:46 +08:00
|
|
|
|
|
|
|
/* no longer supported */
|
|
|
|
ZEND_API int add_assoc_function(zval *arg, char *key,void (*function_ptr)(INTERNAL_FUNCTION_PARAMETERS));
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_assoc_long(zval *arg, char *key, long n);
|
1999-12-31 21:56:59 +08:00
|
|
|
ZEND_API int add_assoc_unset(zval *arg, char *key);
|
1999-10-04 19:42:46 +08:00
|
|
|
ZEND_API int add_assoc_bool(zval *arg, char *key, int b);
|
|
|
|
ZEND_API int add_assoc_resource(zval *arg, char *key, int r);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_assoc_double(zval *arg, char *key, double d);
|
|
|
|
ZEND_API int add_assoc_string(zval *arg, char *key, char *str, int duplicate);
|
|
|
|
ZEND_API int add_assoc_stringl(zval *arg, char *key, char *str, uint length, int duplicate);
|
1999-10-04 19:42:46 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_index_long(zval *arg, uint idx, long n);
|
1999-12-31 21:56:59 +08:00
|
|
|
ZEND_API int add_index_unset(zval *arg, uint idx);
|
1999-10-04 19:42:46 +08:00
|
|
|
ZEND_API int add_index_bool(zval *arg, uint idx, int b);
|
|
|
|
ZEND_API int add_index_resource(zval *arg, uint idx, int r);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_index_double(zval *arg, uint idx, double d);
|
|
|
|
ZEND_API int add_index_string(zval *arg, uint idx, char *str, int duplicate);
|
|
|
|
ZEND_API int add_index_stringl(zval *arg, uint idx, char *str, uint length, int duplicate);
|
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);
|
1999-12-31 21:56:59 +08:00
|
|
|
ZEND_API int add_next_index_unset(zval *arg);
|
1999-10-04 19:42:46 +08:00
|
|
|
ZEND_API int add_next_index_bool(zval *arg, int b);
|
|
|
|
ZEND_API int add_next_index_resource(zval *arg, int r);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_next_index_double(zval *arg, double d);
|
|
|
|
ZEND_API int add_next_index_string(zval *arg, char *str, int duplicate);
|
|
|
|
ZEND_API int add_next_index_stringl(zval *arg, char *str, uint length, int duplicate);
|
|
|
|
|
|
|
|
ZEND_API int add_get_index_long(zval *arg, uint idx, long l, void **dest);
|
|
|
|
ZEND_API int add_get_index_double(zval *arg, uint idx, double d, void **dest);
|
1999-10-04 19:42:46 +08:00
|
|
|
ZEND_API int add_get_assoc_string(zval *arg, char *key, char *str, void **dest, int duplicate);
|
|
|
|
ZEND_API int add_get_assoc_stringl(zval *arg, char *key, char *str, uint length, void **dest, int duplicate);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_get_index_string(zval *arg, uint idx, char *str, void **dest, int duplicate);
|
|
|
|
ZEND_API int add_get_index_stringl(zval *arg, uint idx, char *str, uint length, void **dest, int duplicate);
|
|
|
|
|
1999-12-20 02:54:40 +08:00
|
|
|
ZEND_API int call_user_function(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, int param_count, zval *params[]);
|
|
|
|
ZEND_API int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval **retval_ptr_ptr, int param_count, zval **params[], int no_separation);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
ZEND_API int add_property_long(zval *arg, char *key, long l);
|
2000-02-02 07:12:48 +08:00
|
|
|
ZEND_API int add_property_unset(zval *arg, char *key);
|
|
|
|
ZEND_API int add_property_bool(zval *arg, char *key, int b);
|
1999-09-29 23:25:06 +08:00
|
|
|
ZEND_API int add_property_resource(zval *arg, char *key, long r);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int add_property_double(zval *arg, char *key, double d);
|
|
|
|
ZEND_API int add_property_string(zval *arg, char *key, char *str, int duplicate);
|
|
|
|
ZEND_API int add_property_stringl(zval *arg, char *key, char *str, uint length, int duplicate);
|
|
|
|
|
1999-12-05 00:50:18 +08:00
|
|
|
ZEND_API int zend_set_hash_symbol(zval *symbol, char *name, int name_length,
|
|
|
|
int is_ref, int num_symbol_tables, ...);
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#define add_method(arg,key,method) add_assoc_function((arg),(key),(method))
|
|
|
|
|
2000-01-04 21:56:17 +08:00
|
|
|
#define ZVAL_RESOURCE(z,l) { \
|
|
|
|
(z)->type = IS_RESOURCE; \
|
|
|
|
(z)->value.lval = l; \
|
|
|
|
}
|
|
|
|
#define ZVAL_BOOL(z,b) { \
|
|
|
|
(z)->type = IS_BOOL; \
|
|
|
|
(z)->value.lval = b; \
|
|
|
|
}
|
|
|
|
#define ZVAL_NULL(z) { \
|
|
|
|
(z)->type = IS_NULL; \
|
|
|
|
}
|
|
|
|
#define ZVAL_LONG(z,l) { \
|
|
|
|
(z)->type = IS_LONG; \
|
|
|
|
(z)->value.lval = l; \
|
|
|
|
}
|
|
|
|
#define ZVAL_DOUBLE(z,d) { \
|
|
|
|
(z)->type = IS_DOUBLE; \
|
|
|
|
(z)->value.dval = d; \
|
|
|
|
}
|
|
|
|
#define ZVAL_STRING(z,s,duplicate) { \
|
|
|
|
char *__s=(s); \
|
|
|
|
(z)->value.str.len = strlen(__s); \
|
|
|
|
(z)->value.str.val = (duplicate?estrndup(__s,(z)->value.str.len):__s); \
|
|
|
|
(z)->type = IS_STRING; \
|
|
|
|
}
|
|
|
|
#define ZVAL_STRINGL(z,s,l,duplicate) { \
|
|
|
|
char *__s=(s); int __l=l; \
|
|
|
|
(z)->value.str.len = __l; \
|
|
|
|
(z)->value.str.val = (duplicate?estrndup(__s,__l):__s); \
|
|
|
|
(z)->type = IS_STRING; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ZVAL_EMPTY_STRING(z) { \
|
|
|
|
(z)->value.str.len = 0; \
|
|
|
|
(z)->value.str.val = empty_string \
|
|
|
|
(z)->type = IS_STRING; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ZVAL_FALSE { (z)->value.lval = 0; (z)->type = IS_BOOL; }
|
|
|
|
#define ZVAL_TRUE { (z)->value.lval = 1; (z)->type = IS_BOOL; }
|
|
|
|
|
1999-07-05 14:26:29 +08:00
|
|
|
#define RETVAL_RESOURCE(l) { \
|
|
|
|
return_value->type = IS_RESOURCE;\
|
|
|
|
return_value->value.lval = l; \
|
|
|
|
}
|
1999-12-23 02:49:23 +08:00
|
|
|
#define RETVAL_BOOL(b) { \
|
|
|
|
return_value->type = IS_BOOL; \
|
|
|
|
return_value->value.lval = b; \
|
|
|
|
}
|
2000-01-19 17:38:45 +08:00
|
|
|
#define RETVAL_NULL() { \
|
2000-01-04 21:22:58 +08:00
|
|
|
return_value->type = IS_NULL; \
|
1999-12-31 21:56:59 +08:00
|
|
|
}
|
1999-05-27 09:44:17 +08:00
|
|
|
#define RETVAL_LONG(l) { \
|
|
|
|
return_value->type = IS_LONG; \
|
|
|
|
return_value->value.lval = l; \
|
|
|
|
}
|
|
|
|
#define RETVAL_DOUBLE(d) { \
|
|
|
|
return_value->type = IS_DOUBLE; \
|
|
|
|
return_value->value.dval = d; \
|
|
|
|
}
|
|
|
|
#define RETVAL_STRING(s,duplicate) { \
|
|
|
|
char *__s=(s); \
|
|
|
|
return_value->value.str.len = strlen(__s); \
|
|
|
|
return_value->value.str.val = (duplicate?estrndup(__s,return_value->value.str.len):__s); \
|
|
|
|
return_value->type = IS_STRING; \
|
|
|
|
}
|
|
|
|
#define RETVAL_STRINGL(s,l,duplicate) { \
|
|
|
|
char *__s=(s); int __l=l; \
|
|
|
|
return_value->value.str.len = __l; \
|
|
|
|
return_value->value.str.val = (duplicate?estrndup(__s,__l):__s); \
|
|
|
|
return_value->type = IS_STRING; \
|
|
|
|
}
|
|
|
|
|
2000-01-04 21:56:17 +08:00
|
|
|
#define RETVAL_EMPTY_STRING() { \
|
|
|
|
return_value->value.str.len = 0; \
|
|
|
|
return_value->value.str.val = empty_string \
|
|
|
|
return_value->type = IS_STRING; \
|
|
|
|
}
|
|
|
|
|
1999-05-27 09:44:17 +08:00
|
|
|
#define RETVAL_FALSE { return_value->value.lval = 0; return_value->type = IS_BOOL; }
|
|
|
|
#define RETVAL_TRUE { return_value->value.lval = 1; return_value->type = IS_BOOL; }
|
|
|
|
|
1999-07-05 14:26:29 +08:00
|
|
|
#define RETURN_RESOURCE(l) { \
|
|
|
|
return_value->type = IS_RESOURCE;\
|
|
|
|
return_value->value.lval = l; \
|
|
|
|
return; \
|
|
|
|
}
|
1999-12-23 02:49:23 +08:00
|
|
|
|
|
|
|
#define RETURN_BOOL(b) { \
|
|
|
|
return_value->type = IS_BOOL; \
|
|
|
|
return_value->value.lval = b; \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
|
2000-01-19 17:38:45 +08:00
|
|
|
#define RETURN_NULL() { \
|
2000-01-04 21:22:58 +08:00
|
|
|
return_value->type = IS_NULL; \
|
1999-12-31 21:56:59 +08:00
|
|
|
return; \
|
|
|
|
}
|
|
|
|
|
1999-05-27 09:44:17 +08:00
|
|
|
#define RETURN_LONG(l) { \
|
|
|
|
return_value->type = IS_LONG; \
|
|
|
|
return_value->value.lval = l; \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
#define RETURN_DOUBLE(d) { \
|
|
|
|
return_value->type = IS_DOUBLE; \
|
|
|
|
return_value->value.dval = d; \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
#define RETURN_STRING(s,duplicate) { \
|
|
|
|
char *__s=(s); \
|
|
|
|
return_value->value.str.len = strlen(__s); \
|
|
|
|
return_value->value.str.val = (duplicate?estrndup(__s,return_value->value.str.len):__s); \
|
|
|
|
return_value->type = IS_STRING; \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
#define RETURN_STRINGL(s,l,duplicate) { \
|
|
|
|
char *__s=(s); int __l=l; \
|
|
|
|
return_value->value.str.len = __l; \
|
|
|
|
return_value->value.str.val = (duplicate?estrndup(__s,__l):__s); \
|
|
|
|
return_value->type = IS_STRING; \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
|
2000-01-04 21:56:17 +08:00
|
|
|
#define RETURN_EMPTY_STRING() { \
|
|
|
|
return_value->value.str.len = 0; \
|
|
|
|
return_value->value.str.val = empty_string \
|
|
|
|
return_value->type = IS_STRING; \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
|
1999-05-27 09:44:17 +08:00
|
|
|
#define RETURN_FALSE { RETVAL_FALSE; return; }
|
|
|
|
#define RETURN_TRUE { RETVAL_TRUE; return; }
|
|
|
|
|
1999-07-30 10:49:12 +08:00
|
|
|
#define SET_VAR_STRING(n,v) { \
|
|
|
|
{ \
|
1999-12-27 05:21:33 +08:00
|
|
|
zval *var; \
|
1999-07-30 10:49:12 +08:00
|
|
|
char *str=(v); /* prevent 'v' from being evaluated more than once */ \
|
|
|
|
\
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(var); \
|
1999-07-30 10:49:12 +08:00
|
|
|
var->value.str.val = (str); \
|
|
|
|
var->value.str.len = strlen((str)); \
|
|
|
|
var->type = IS_STRING; \
|
1999-08-07 00:54:32 +08:00
|
|
|
ZEND_SET_GLOBAL_VAR(n, var); \
|
1999-07-30 10:49:12 +08:00
|
|
|
} \
|
1999-05-27 09:44:17 +08:00
|
|
|
}
|
1999-07-30 10:49:12 +08:00
|
|
|
|
|
|
|
#define SET_VAR_STRINGL(n,v,l) { \
|
|
|
|
{ \
|
1999-12-27 05:21:33 +08:00
|
|
|
zval *var; \
|
1999-07-30 10:49:12 +08:00
|
|
|
\
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(var); \
|
1999-07-30 10:49:12 +08:00
|
|
|
var->value.str.val = (v); \
|
|
|
|
var->value.str.len = (l); \
|
|
|
|
var->type = IS_STRING; \
|
|
|
|
ZEND_SET_GLOBAL_VAR(n, var); \
|
|
|
|
} \
|
1999-05-27 09:44:17 +08:00
|
|
|
}
|
1999-07-30 10:49:12 +08:00
|
|
|
|
|
|
|
#define SET_VAR_LONG(n,v) { \
|
|
|
|
{ \
|
1999-12-27 05:21:33 +08:00
|
|
|
zval *var; \
|
1999-07-30 10:49:12 +08:00
|
|
|
\
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(var); \
|
1999-07-30 10:49:12 +08:00
|
|
|
var->value.lval = (v); \
|
|
|
|
var->type = IS_LONG; \
|
|
|
|
ZEND_SET_GLOBAL_VAR(n, var); \
|
|
|
|
} \
|
1999-05-27 09:44:17 +08:00
|
|
|
}
|
1999-07-30 10:49:12 +08:00
|
|
|
|
|
|
|
#define SET_VAR_DOUBLE(n,v) { \
|
|
|
|
{ \
|
1999-12-27 05:21:33 +08:00
|
|
|
zval *var; \
|
1999-07-30 10:49:12 +08:00
|
|
|
\
|
1999-12-27 05:21:33 +08:00
|
|
|
ALLOC_ZVAL(var); \
|
1999-07-30 10:49:12 +08:00
|
|
|
var->value.dval = (v); \
|
|
|
|
var->type = IS_DOUBLE; \
|
|
|
|
ZEND_SET_GLOBAL_VAR(n, var); \
|
|
|
|
} \
|
1999-05-27 09:44:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-03 15:54:17 +08:00
|
|
|
#define ZEND_SET_SYMBOL(symtable, name, var) \
|
|
|
|
{ \
|
|
|
|
char *_name = (name); \
|
|
|
|
\
|
1999-12-04 22:56:44 +08:00
|
|
|
ZEND_SET_SYMBOL_WITH_LENGTH(symtable, _name, strlen(_name)+1, var, 1, 0); \
|
1999-07-30 10:49:12 +08:00
|
|
|
}
|
|
|
|
|
1999-12-03 15:54:17 +08:00
|
|
|
#define ZEND_SET_SYMBOL_WITH_LENGTH(symtable, name, name_length, var, _refcount, _is_ref) \
|
1999-07-30 10:49:12 +08:00
|
|
|
{ \
|
|
|
|
zval **orig_var; \
|
|
|
|
\
|
1999-07-30 22:17:08 +08:00
|
|
|
if (zend_hash_find(symtable, (name), (name_length), (void **) &orig_var)==SUCCESS \
|
1999-07-30 10:49:12 +08:00
|
|
|
&& PZVAL_IS_REF(*orig_var)) { \
|
1999-12-02 05:47:47 +08:00
|
|
|
(var)->refcount = (*orig_var)->refcount; \
|
1999-10-18 22:17:36 +08:00
|
|
|
(var)->is_ref = 1; \
|
1999-07-30 10:49:12 +08:00
|
|
|
\
|
1999-12-02 06:00:58 +08:00
|
|
|
if (_refcount) { \
|
|
|
|
(var)->refcount += _refcount-1; \
|
|
|
|
} \
|
1999-07-30 10:49:12 +08:00
|
|
|
zval_dtor(*orig_var); \
|
1999-12-02 05:47:47 +08:00
|
|
|
**orig_var = *(var); \
|
1999-12-24 23:22:11 +08:00
|
|
|
FREE_ZVAL(var); \
|
1999-07-30 10:49:12 +08:00
|
|
|
} else { \
|
1999-12-03 04:38:41 +08:00
|
|
|
(var)->is_ref = _is_ref; \
|
1999-12-02 05:47:47 +08:00
|
|
|
if (_refcount) { \
|
|
|
|
(var)->refcount = _refcount; \
|
|
|
|
} \
|
|
|
|
zend_hash_update(symtable, (name), (name_length), &(var), sizeof(zval *), NULL); \
|
1999-07-30 10:49:12 +08:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
1999-07-30 22:17:08 +08:00
|
|
|
|
|
|
|
#define ZEND_SET_GLOBAL_VAR(name, var) \
|
|
|
|
ZEND_SET_SYMBOL(&EG(symbol_table), name, var)
|
|
|
|
|
1999-12-04 01:03:35 +08:00
|
|
|
#define ZEND_SET_GLOBAL_VAR_WITH_LENGTH(name, name_length, var, _refcount, _is_ref) \
|
|
|
|
ZEND_SET_SYMBOL_WITH_LENGTH(&EG(symbol_table), name, name_length, var, _refcount, _is_ref)
|
1999-12-04 00:59:04 +08:00
|
|
|
|
1999-09-21 00:56:09 +08:00
|
|
|
#define HASH_OF(p) ((p)->type==IS_ARRAY ? (p)->value.ht : (((p)->type==IS_OBJECT ? (p)->value.obj.properties : NULL)))
|
2000-01-04 21:56:17 +08:00
|
|
|
#define ZVAL_IS_NULL(z) ((z)->type==IS_NULL)
|
1999-09-21 00:56:09 +08:00
|
|
|
|
1999-12-05 00:50:18 +08:00
|
|
|
#endif /* _ZEND_API_H */
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|