Searched refs:__callstatic (Results 1 – 23 of 23) sorted by relevance
/PHP-7.0/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 | 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 | bug45186.phpt | 2 Bug #45186 (__call depends on __callstatic in class scope) 11 static public function __callstatic($a, $b) { 12 print "__callstatic:\n"; 51 __callstatic:
|
H A D | magic_methods_009.phpt | 2 Testing __callstatic declaration with wrong modifier 7 static protected function __callstatic($a, $b) {
|
H A D | magic_methods_006.phpt | 2 Testing __callstatic declaration in interface with missing the 'static' modifier 7 function __callstatic($a, $b);
|
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_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 | call_user_func_005.phpt | 7 public static function __callstatic($x, $y) {
|
H A D | magic_methods_001.phpt | 19 static public function __callstatic($a, $b) {
|
H A D | call_static_006.phpt | 10 static function __callstatic($a, $b) {
|
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-7.0/Zend/ |
H A D | zend.h | 155 union _zend_function *__callstatic; member
|
H A D | zend_object_handlers.c | 1090 zend_function *fbc = is_static ? ce->__callstatic : ce->__call; in zend_get_call_trampoline_func() 1272 } else if (ce->__callstatic) { in zend_std_get_static_method() 1298 if (ce->__callstatic) { in zend_std_get_static_method() 1309 if (ce->__callstatic) { in zend_std_get_static_method()
|
H A D | zend_inheritance.c | 120 if (EXPECTED(!ce->__callstatic)) { in do_inherit_parent_constructor() 121 ce->__callstatic = ce->parent->__callstatic; in do_inherit_parent_constructor() 1091 ce->__callstatic = fe; in zend_add_magic_methods()
|
H A D | zend_API.c | 2129 …LL, *__set = NULL, *__unset = NULL, *__isset = NULL, *__call = NULL, *__callstatic = NULL, *__tost… in zend_register_functions() local 2284 __callstatic = reg_function; in zend_register_functions() 2334 scope->__callstatic = __callstatic; in zend_register_functions() 2368 if (__callstatic) { in zend_register_functions() 2369 if (!(__callstatic->common.fn_flags & ZEND_ACC_STATIC)) { in zend_register_functions() 2370 …pe, "Method %s::%s() must be static", ZSTR_VAL(scope->name), ZSTR_VAL(__callstatic->common.functio… in zend_register_functions() 2372 __callstatic->common.fn_flags |= ZEND_ACC_STATIC; in zend_register_functions() 3041 (!fcc->object && fcc->calling_scope->__callstatic)))) { in zend_is_callable_check_func()
|
H A D | zend_API.h | 203 class_container.__callstatic = NULL; \
|
H A D | zend_compile.c | 1666 ce->__callstatic = NULL; in zend_initialize_class_data() 4815 ce->__callstatic = (zend_function *) op_array; in zend_begin_method_decl()
|
/PHP-7.0/ext/opcache/ |
H A D | zend_persist.c | 894 if (ce->__callstatic) { in zend_update_parent_ce() 895 ce->__callstatic = zend_shared_alloc_get_xlat_entry(ce->__callstatic); in zend_update_parent_ce()
|
H A D | zend_file_cache.c | 671 SERIALIZE_PTR(ce->__callstatic); in zend_file_cache_serialize_class() 1228 UNSERIALIZE_PTR(ce->__callstatic); in zend_file_cache_unserialize_class()
|
H A D | zend_accelerator_util_funcs.c | 460 zend_update_inherited_handler(__callstatic); in zend_class_copy_ctor()
|
Completed in 109 milliseconds