Skip to content

Commit 637a404

Browse files
committed
- MFH as discussed
. zend_exception_get_default() -> zend_exception_get_default(TSRMLS_D) . zend_get_error_exception() -> zend_get_error_exception(TSRMLS_D) . added E_RECOVERABLE_ERROR . added ZEND_TOSTRING_FUNC_NAME . added __tostring function cache to zend_class_entry . added ZEND_NAMED_ME . modified ZEND_ME_MAPPING to support method flags . added ZEND_MN . method entries now use prefix "zim_" instead of "zif_" . drop EG(ze1_compatibility_mode) . changed cast handler, now without (int should_free): typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); . changed get_iterator, now receives whether value is by ref: zend_object_iterator *(*get_iterator)(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); . added zend_objects_store_add_ref_by_handle . added zend_objects_store_del_ref_by_handle . convert_to_explicit_type(pzv, type)
1 parent 5718445 commit 637a404

31 files changed

+737
-846
lines changed

Zend/zend.c

+2-9
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ static ZEND_INI_MH(OnUpdateErrorReporting)
7777

7878
ZEND_INI_BEGIN()
7979
ZEND_INI_ENTRY("error_reporting", NULL, ZEND_INI_ALL, OnUpdateErrorReporting)
80-
STD_ZEND_INI_BOOLEAN("zend.ze1_compatibility_mode", "0", ZEND_INI_ALL, OnUpdateBool, ze1_compatibility_mode, zend_executor_globals, executor_globals)
8180
#ifdef ZEND_MULTIBYTE
8281
STD_ZEND_INI_BOOLEAN("detect_unicode", "1", ZEND_INI_ALL, OnUpdateBool, detect_unicode, zend_compiler_globals, compiler_globals)
8382
#endif
@@ -221,19 +220,13 @@ ZEND_API void zend_make_printable_zval(zval *expr, zval *expr_copy, int *use_cop
221220
case IS_OBJECT:
222221
{
223222
TSRMLS_FETCH();
224-
#if 0
223+
225224
/* Standard PHP objects */
226225
if (Z_OBJ_HT_P(expr) == &std_object_handlers || !Z_OBJ_HT_P(expr)->cast_object) {
227-
if (zend_std_cast_object_tostring(expr, expr_copy, IS_STRING, 0 TSRMLS_CC) == SUCCESS) {
226+
if (zend_std_cast_object_tostring(expr, expr_copy, IS_STRING TSRMLS_CC) == SUCCESS) {
228227
break;
229228
}
230229
zend_error(E_NOTICE, "Object of class %s could not be converted to string", Z_OBJCE_P(expr)->name);
231-
}
232-
#endif
233-
if (Z_OBJ_HANDLER_P(expr, cast_object)) {
234-
if(Z_OBJ_HANDLER_P(expr, cast_object)(expr, expr_copy, IS_STRING, 0 TSRMLS_CC) == SUCCESS) {
235-
break;
236-
}
237230
} else {
238231
if(Z_OBJ_HANDLER_P(expr, get)) {
239232
zval *z = Z_OBJ_HANDLER_P(expr, get)(expr TSRMLS_CC);

Zend/zend.h

+6-7
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((nore
258258
# define zend_error_noreturn zend_error
259259
#endif
260260

261-
262261
/*
263262
* zval
264263
*/
@@ -320,7 +319,7 @@ struct _zend_class_entry {
320319
char type;
321320
char *name;
322321
zend_uint name_length;
323-
struct _zend_class_entry *parent;
322+
struct _zend_class_entry *parent;
324323
int refcount;
325324
zend_bool constants_updated;
326325
zend_uint ce_flags;
@@ -341,14 +340,15 @@ struct _zend_class_entry {
341340
union _zend_function *__unset;
342341
union _zend_function *__isset;
343342
union _zend_function *__call;
343+
union _zend_function *__tostring;
344344
union _zend_function *serialize_func;
345345
union _zend_function *unserialize_func;
346346

347347
zend_class_iterator_funcs iterator_funcs;
348348

349349
/* handlers */
350350
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);
352352
int (*interface_gets_implemented)(zend_class_entry *iface, zend_class_entry *class_type TSRMLS_DC); /* a class implements this interface */
353353

354354
/* serializer callbacks */
@@ -363,7 +363,7 @@ struct _zend_class_entry {
363363
zend_uint line_end;
364364
char *doc_comment;
365365
zend_uint doc_comment_len;
366-
366+
367367
struct _zend_module_entry *module;
368368
};
369369

@@ -384,7 +384,7 @@ typedef struct _zend_utility_functions {
384384
char *(*getenv_function)(char *name, size_t name_len TSRMLS_DC);
385385
} zend_utility_functions;
386386

387-
387+
388388
typedef struct _zend_utility_values {
389389
char *import_use_extension;
390390
uint import_use_extension_length;
@@ -430,7 +430,6 @@ typedef int (*zend_write_func_t)(const char *str, uint str_length);
430430
#define OE_IS_OBJECT (1<<1)
431431
#define OE_IS_METHOD (1<<2)
432432

433-
434433
int zend_startup(zend_utility_functions *utility_functions, char **extensions, int start_builtin_functions);
435434
void zend_shutdown(TSRMLS_D);
436435
void zend_register_standard_ini_entries(TSRMLS_D);
@@ -562,7 +561,7 @@ END_EXTERN_C()
562561

563562
#define INIT_PZVAL(z) \
564563
(z)->refcount = 1; \
565-
(z)->is_ref = 0;
564+
(z)->is_ref = 0;
566565

567566
#define INIT_ZVAL(z) z = zval_used_for_init;
568567

0 commit comments

Comments
 (0)