mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Avoid magic method hash lookups
This commit is contained in:
parent
43aca3118a
commit
091d77f28a
4 changed files with 5 additions and 5 deletions
|
@ -984,7 +984,7 @@ ZEND_API ZEND_COLD void zend_exception_error(zend_object *ex, int severity) /* {
|
|||
zend_string *str, *file = NULL;
|
||||
zend_long line = 0;
|
||||
|
||||
zend_call_method_with_0_params(&exception, ce_exception, NULL, "__tostring", &tmp);
|
||||
zend_call_method_with_0_params(&exception, ce_exception, &ex->ce->__tostring, "__tostring", &tmp);
|
||||
if (!EG(exception)) {
|
||||
if (Z_TYPE(tmp) != IS_STRING) {
|
||||
zend_error(E_WARNING, "%s::__toString() must return a string", ZSTR_VAL(ce_exception->name));
|
||||
|
|
|
@ -1141,7 +1141,7 @@ U_CFUNC PHP_FUNCTION(intlcal_from_date_time)
|
|||
if (!(Z_TYPE_P(zv_arg) == IS_OBJECT && instanceof_function(
|
||||
Z_OBJCE_P(zv_arg), php_date_get_date_ce()))) {
|
||||
object_init_ex(&zv_tmp, php_date_get_date_ce());
|
||||
zend_call_method_with_1_params(&zv_tmp, NULL, NULL, "__construct", NULL, zv_arg);
|
||||
zend_call_method_with_1_params(&zv_tmp, NULL, &Z_OBJCE(zv_tmp)->constructor, "__construct", NULL, zv_arg);
|
||||
zv_datetime = &zv_tmp;
|
||||
if (EG(exception)) {
|
||||
zend_object_store_ctor_failed(Z_OBJ(zv_tmp));
|
||||
|
@ -1257,7 +1257,7 @@ U_CFUNC PHP_FUNCTION(intlcal_to_date_time)
|
|||
|
||||
/* Finally, instantiate object and call constructor */
|
||||
object_init_ex(return_value, php_date_get_date_ce());
|
||||
zend_call_method_with_2_params(return_value, NULL, NULL, "__construct", NULL, &ts_zval, timezone_zval);
|
||||
zend_call_method_with_2_params(return_value, NULL, &Z_OBJCE_P(return_value)->constructor, "__construct", NULL, &ts_zval, timezone_zval);
|
||||
if (EG(exception)) {
|
||||
intl_errors_set(CALENDAR_ERROR_P(co), U_ILLEGAL_ARGUMENT_ERROR,
|
||||
"intlcal_to_date_time: DateTime constructor has thrown exception",
|
||||
|
|
|
@ -98,7 +98,7 @@ U_CFUNC zval *timezone_convert_to_datetimezone(const TimeZone *timeZone,
|
|||
goto error;
|
||||
}
|
||||
ZVAL_STR(&arg, u8str);
|
||||
zend_call_method_with_1_params(ret, NULL, NULL, "__construct", NULL, &arg);
|
||||
zend_call_method_with_1_params(ret, NULL, &Z_OBJCE_P(ret)->constructor, "__construct", NULL, &arg);
|
||||
if (EG(exception)) {
|
||||
spprintf(&message, 0,
|
||||
"%s: DateTimeZone constructor threw exception", func);
|
||||
|
|
|
@ -775,7 +775,7 @@ static inline void phpdbg_handle_exception(void) /* {{{ */
|
|||
EG(exception) = NULL;
|
||||
|
||||
ZVAL_OBJ(&zv, ex);
|
||||
zend_call_method_with_0_params(&zv, ex->ce, NULL, "__tostring", &tmp);
|
||||
zend_call_method_with_0_params(&zv, ex->ce, &ex->ce->__tostring, "__tostring", &tmp);
|
||||
file = zval_get_string(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("file"), 1, &rv));
|
||||
line = zval_get_long(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("line"), 1, &rv));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue