/php-7.4/Zend/ |
H A D | zend_object_handlers.c(last modified 16/09/2020 08:00) | 371 zend_throw_error(NULL, "Cannot access %s property %s::$%s", zend_visibility_string(property_info->flags), ZSTR_VAL(ce->name), ZSTR_VAL(member)); in zend_bad_property_access() 1315 zend_throw_error(NULL, "Call to %s method %s::%s() from context '%s'", zend_visibility_string(fbc->common.fn_flags), ZEND_FN_SCOPE_NAME(fbc), ZSTR_VAL(method_name), scope ? ZSTR_VAL(scope->name) : ""); in zend_bad_method_call() 1578 zend_throw_error(NULL, "Call to %s %s::%s() from context '%s'", zend_visibility_string(constructor->common.fn_flags), ZSTR_VAL(constructor->common.scope->name), ZSTR_VAL(constructor->common.function_name), ZSTR_VAL(scope->name)); in zend_bad_constructor_call() 1580 zend_throw_error(NULL, "Call to %s %s::%s() from invalid context", zend_visibility_string(constructor->common.fn_flags), ZSTR_VAL(constructor->common.scope->name), ZSTR_VAL(constructor->common.function_name)); in zend_bad_constructor_call()
|
H A D | zend_inheritance.c(last modified 07/10/2020 08:00) | 192 char *zend_visibility_string(uint32_t fn_flags) /* {{{ */ in zend_visibility_string() function 846 ZEND_FN_SCOPE_NAME(child), ZSTR_VAL(child->common.function_name), zend_visibility_string(parent_flags), ZEND_FN_SCOPE_NAME(parent), (parent_flags&ZEND_ACC_PUBLIC) ? "" : " or weaker"); in do_inheritance_check_on_method_ex() 970 zend_error_noreturn(E_COMPILE_ERROR, "Access level to %s::$%s must be %s (as in class %s)%s", ZSTR_VAL(ce->name), ZSTR_VAL(key), zend_visibility_string(parent_info->flags), ZSTR_VAL(ce->parent->name), (parent_info->flags&ZEND_ACC_PUBLIC) ? "" : " or weaker"); in do_inherit_property() 1063 ZSTR_VAL(ce->name), ZSTR_VAL(name), zend_visibility_string(Z_ACCESS_FLAGS(parent_const->value)), ZSTR_VAL(ce->parent->name), (Z_ACCESS_FLAGS(parent_const->value) & ZEND_ACC_PUBLIC) ? "" : " or weaker"); in do_inherit_class_constant()
|
H A D | zend_constants.c(last modified 13/02/2019 23:06) | 382 zend_throw_error(NULL, "Cannot access %s const %s::%s", zend_visibility_string(Z_ACCESS_FLAGS(c->value)), ZSTR_VAL(class_name), ZSTR_VAL(constant_name)); in zend_get_constant_ex()
|
H A D | zend_compile.h(last modified 23/10/2019 08:00) | 359 char *zend_visibility_string(uint32_t fn_flags);
|
H A D | zend_API.c(last modified 31/08/2020 08:00) | 3229 zend_spprintf(error, 0, "cannot access %s method %s::%s()", zend_visibility_string(fcc->function_handler->common.fn_flags), ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); in zend_is_callable_check_func()
|
H A D | zend_execute.c(last modified 23/02/2021 08:00) | 3396 zend_throw_error(NULL, "Call to %s %s::__clone() from context '%s'", zend_visibility_string(clone->common.fn_flags), ZSTR_VAL(clone->common.scope->name), scope ? ZSTR_VAL(scope->name) : ""); in zend_wrong_clone_call()
|
H A D | zend_vm_def.h(last modified 23/02/2021 08:00) | 5647 zend_throw_error(NULL, "Cannot access %s const %s::%s", zend_visibility_string(Z_ACCESS_FLAGS(c->value)), ZSTR_VAL(ce->name), Z_STRVAL_P(RT_CONSTANT(opline, opline->op2)));
|
H A D | zend_vm_execute.h(last modified 23/02/2021 08:00) | 6123 zend_throw_error(NULL, "Cannot access %s const %s::%s", zend_visibility_string(Z_ACCESS_FLAGS(c->value)), ZSTR_VAL(ce->name), Z_STRVAL_P(RT_CONSTANT(opline, opline->op2))); in ZEND_FETCH_CLASS_CONSTANT_SPEC_CONST_CONST_HANDLER() 23980 zend_throw_error(NULL, "Cannot access %s const %s::%s", zend_visibility_string(Z_ACCESS_FLAGS(c->value)), ZSTR_VAL(ce->name), Z_STRVAL_P(RT_CONSTANT(opline, opline->op2))); in ZEND_FETCH_CLASS_CONSTANT_SPEC_VAR_CONST_HANDLER() 32156 zend_throw_error(NULL, "Cannot access %s const %s::%s", zend_visibility_string(Z_ACCESS_FLAGS(c->value)), ZSTR_VAL(ce->name), Z_STRVAL_P(RT_CONSTANT(opline, opline->op2))); in ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER() [all...] |
/php-7.4/ext/reflection/ |
H A D | php_reflection.c(last modified 26/02/2021 08:00) | 548 char *visibility = zend_visibility_string(Z_ACCESS_FLAGS(c->value)); in _class_const_string()
|