@@ -258,7 +258,6 @@ void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((nore
258
258
# define zend_error_noreturn zend_error
259
259
#endif
260
260
261
-
262
261
/*
263
262
* zval
264
263
*/
@@ -320,7 +319,7 @@ struct _zend_class_entry {
320
319
char type ;
321
320
char * name ;
322
321
zend_uint name_length ;
323
- struct _zend_class_entry * parent ;
322
+ struct _zend_class_entry * parent ;
324
323
int refcount ;
325
324
zend_bool constants_updated ;
326
325
zend_uint ce_flags ;
@@ -341,14 +340,15 @@ struct _zend_class_entry {
341
340
union _zend_function * __unset ;
342
341
union _zend_function * __isset ;
343
342
union _zend_function * __call ;
343
+ union _zend_function * __tostring ;
344
344
union _zend_function * serialize_func ;
345
345
union _zend_function * unserialize_func ;
346
346
347
347
zend_class_iterator_funcs iterator_funcs ;
348
348
349
349
/* handlers */
350
350
zend_object_value (* create_object )(zend_class_entry * class_type TSRMLS_DC );
351
- zend_object_iterator * (* get_iterator )(zend_class_entry * ce , zval * object TSRMLS_DC );
351
+ zend_object_iterator * (* get_iterator )(zend_class_entry * ce , zval * object , int by_ref TSRMLS_DC );
352
352
int (* interface_gets_implemented )(zend_class_entry * iface , zend_class_entry * class_type TSRMLS_DC ); /* a class implements this interface */
353
353
354
354
/* serializer callbacks */
@@ -363,7 +363,7 @@ struct _zend_class_entry {
363
363
zend_uint line_end ;
364
364
char * doc_comment ;
365
365
zend_uint doc_comment_len ;
366
-
366
+
367
367
struct _zend_module_entry * module ;
368
368
};
369
369
@@ -384,7 +384,7 @@ typedef struct _zend_utility_functions {
384
384
char * (* getenv_function )(char * name , size_t name_len TSRMLS_DC );
385
385
} zend_utility_functions ;
386
386
387
-
387
+
388
388
typedef struct _zend_utility_values {
389
389
char * import_use_extension ;
390
390
uint import_use_extension_length ;
@@ -430,7 +430,6 @@ typedef int (*zend_write_func_t)(const char *str, uint str_length);
430
430
#define OE_IS_OBJECT (1<<1)
431
431
#define OE_IS_METHOD (1<<2)
432
432
433
-
434
433
int zend_startup (zend_utility_functions * utility_functions , char * * extensions , int start_builtin_functions );
435
434
void zend_shutdown (TSRMLS_D );
436
435
void zend_register_standard_ini_entries (TSRMLS_D );
@@ -562,7 +561,7 @@ END_EXTERN_C()
562
561
563
562
#define INIT_PZVAL (z ) \
564
563
(z)->refcount = 1; \
565
- (z)->is_ref = 0;
564
+ (z)->is_ref = 0;
566
565
567
566
#define INIT_ZVAL (z ) z = zval_used_for_init;
568
567
0 commit comments