Searched refs:__callstatic (Results 1 – 25 of 25) sorted by relevance
/PHP-8.2/Zend/tests/ |
H A D | bug45180.phpt | 19 print "__callstatic:\n"; 52 __callstatic: 54 __callstatic: 56 __callstatic: 58 __callstatic: 60 __callstatic:
|
H A D | call_static_007.phpt | 2 Testing __call and __callstatic 11 print "__callstatic: ". $a ."\n"; 31 __callstatic: Test 34 __callstatic: Foo
|
H A D | magic_methods_006.phpt | 2 Testing __callstatic declaration in interface with missing the 'static' modifier 7 function __callstatic($a, $b); 12 Fatal error: Method a::__callstatic() must be static in %s on line %d
|
H A D | magic_methods_009.phpt | 2 Testing __callstatic declaration with wrong modifier 7 static protected function __callstatic($a, $b) { 13 Warning: The magic method a::__callstatic() must have public visibility in %s on line %d
|
H A D | bug45186.phpt | 2 Bug #45186 (__call depends on __callstatic in class scope) 11 static public function __callstatic($a, $b) { 12 print "__callstatic:\n"; 59 __callstatic:
|
H A D | lsb_022.phpt | 9 static function __callstatic($name, $args) { 17 static function __callstatic($name, $args) { 18 parent::__callstatic($name, $args); 19 call_user_func_array("parent::__callstatic", array($name, $args));
|
H A D | objects_025.phpt | 2 Testing invalid method names with __call and __callstatic 11 public static function __callstatic($a, $b) {
|
H A D | call_static_006.phpt | 7 static function __callstatic($a, $b) {
|
H A D | call_static_004.phpt | 7 static function __callstatic($a, $b) {
|
H A D | call_static_002.phpt | 2 Testing __call and __callstatic with callbacks
|
H A D | magic_methods_001.phpt | 19 static public function __callstatic($a, $b) {
|
H A D | call_user_func_005.phpt | 7 public static function __callstatic($x, $y) {
|
H A D | bug48533.phpt | 16 static function __callstatic($a, $b) {
|
H A D | bug45186_2.phpt | 2 Bug #45186.2 (__call depends on __callstatic in class scope)
|
/PHP-8.2/Zend/ |
H A D | zend.h | 180 zend_function *__callstatic; member
|
H A D | zend_closures.c | 292 EX(func)->internal_function.scope->__callstatic : EX(func)->internal_function.scope->__call; in ZEND_NAMED_FUNCTION() 337 if (!mptr->common.scope->__callstatic) { in zend_create_closure_from_callable()
|
H A D | zend_inheritance.c | 155 if (EXPECTED(!ce->__callstatic)) { in do_inherit_parent_constructor() 156 ce->__callstatic = parent->__callstatic; in do_inherit_parent_constructor() 2785 zend_update_inherited_handler(__callstatic); in zend_lazy_class_load()
|
H A D | zend_object_handlers.c | 1265 zend_function *fbc = is_static ? ce->__callstatic : ce->__call; in zend_get_call_trampoline_func() 1436 } else if (ce->__callstatic) { in get_static_method_fallback()
|
H A D | zend_API.c | 2683 ce->__callstatic = fptr; in zend_add_magic_method() 3722 (!fcc->object && fcc->calling_scope->__callstatic)))) { in zend_is_callable_check_func()
|
H A D | zend_API.h | 294 class_container.__callstatic = NULL; \
|
H A D | zend_vm_def.h | 8700 …call->func = (fbc->op_array.fn_flags & ZEND_ACC_STATIC) ? fbc->op_array.scope->__callstatic : fbc-…
|
H A D | zend_compile.c | 1884 ce->__callstatic = NULL; in zend_initialize_class_data()
|
H A D | zend_vm_execute.h | 3375 …call->func = (fbc->op_array.fn_flags & ZEND_ACC_STATIC) ? fbc->op_array.scope->__callstatic : fbc-… in ZEND_CALL_TRAMPOLINE_SPEC_HANDLER() 3518 …call->func = (fbc->op_array.fn_flags & ZEND_ACC_STATIC) ? fbc->op_array.scope->__callstatic : fbc-… in ZEND_CALL_TRAMPOLINE_SPEC_OBSERVER_HANDLER()
|
/PHP-8.2/ext/opcache/ |
H A D | zend_persist.c | 1203 if (ce->__callstatic) { in zend_update_parent_ce() 1204 zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__callstatic); in zend_update_parent_ce() 1206 ce->__callstatic = tmp; in zend_update_parent_ce()
|
H A D | zend_file_cache.c | 862 SERIALIZE_PTR(ce->__callstatic); 1686 UNSERIALIZE_PTR(ce->__callstatic);
|
Completed in 216 milliseconds