Searched refs:__autoload (Results 1 – 25 of 93) sorted by relevance
1234
5 function __autoload($name)23 IN: __autoload(UndefinedClass0)24 IN: __autoload(UndefinedClass1)25 IN: __autoload(UndefinedClass2)26 IN: __autoload(UndefinedClass3)27 IN: __autoload(UndefinedClass4)28 IN: __autoload(UndefinedClass5)29 IN: __autoload(UndefinedClass6)30 IN: __autoload(UndefinedClass7)31 IN: __autoload(UndefinedClass8)[all …]
2 Ensure __autoload() recursion is guarded for multiple lookups of same class using difference case.5 function __autoload($name)14 __autoload unDefinedClass
11 function __autoload($class_name)22 __autoload(autoload_root)23 __autoload(autoload_derived)
11 function __autoload($class_name)25 __autoload(autoload_root)26 __autoload(autoload_derived)
11 function __autoload($class_name)41 __autoload(autoload_root)42 __autoload(autoload_derived)
11 function __autoload($class_name)33 __autoload(autoload_interface)34 __autoload(Autoload_Implements)
2 Ensure __autoload() is triggered during unserialization.5 function __autoload($name)
2 Bug #26697 (calling class_exists on a nonexistent class in __autoload results in segfault)4 <?php if (function_exists('__autoload')) die('skip __autoload() declared in auto_prepend_file');?>8 function __autoload($name)20 __autoload(NotExistingClass)22 __autoload(NotExistingClass), done
2 Bug #31102 (Exception not handled when thrown inside __autoload())8 function __autoload($class)42 __autoload(Test1,1)44 __autoload(Test2,2)45 Caught: __autoload46 __autoload(Test3,3)
2 Bug #49908 (throwing exception in __autoload crashes when interface is not defined)6 function __autoload($className) {25 #0 %s(7): __autoload('Bar')26 #1 %s(13): __autoload('Foo')
2 errmsg: __autoload() must take exactly 1 argument6 function __autoload($a, $b) {}11 Fatal error: __autoload() must take exactly 1 argument in %s on line %d
2 instanceof shouldn't call __autoload5 function __autoload($name) {
2 Bug #33116 (crash when assigning class name to global variable in __autoload)5 function __autoload($class)
2 catch shouldn't call __autoload5 function __autoload($name) {
98 In __autoload(string_val)102 In __autoload(string_val)106 In __autoload(string_val)110 In __autoload(string_val)114 In __autoload(string_val)118 In __autoload(string_val)122 In __autoload(string_val)126 In __autoload(string_val)161 In __autoload(string_val)168 In __autoload(string_val)[all …]
2 method_exists() on non-existent class, with __autoload().11 function __autoload($name) {12 echo "In __autoload($name)\n"; 20 In __autoload(UndefC)
66 function __autoload($name)68 echo ">>>> In __autoload: ";206 >>>> In __autoload: string(6) "undefB"210 >>>> In __autoload: string(6) "undefB"221 >>>> In __autoload: string(6) "undefB"225 >>>> In __autoload: string(6) "undefB"236 >>>> In __autoload: string(6) "undefB"240 >>>> In __autoload: string(6) "undefB"251 >>>> In __autoload: string(6) "undefB"255 >>>> In __autoload: string(6) "undefB"[all …]
11 function __autoload($className) {12 echo "In __autoload($className)\n";91 In __autoload(0)95 In __autoload(1)99 In __autoload(12345)112 In __autoload(101234567000)153 In __autoload(1)160 In __autoload(1)
11 function __autoload($traitName) {12 echo "In __autoload($traitName)\n";91 In __autoload(0)95 In __autoload(1)99 In __autoload(12345)112 In __autoload(101234567000)153 In __autoload(1)160 In __autoload(1)
2 Reflection Bug #29268 (__autoload() not called with reflectionProperty->getClass())5 function __autoload($classname) {6 echo "__autoload($classname)\n";25 __autoload(A)
2 Reflection Bug #26640 (__autoload() not invoked by Reflection classes)6 function __autoload($c)
2 Ensure __autoload is called twice if unserialize_callback_func is defined.16 function __autoload($name) {17 echo "in __autoload($name)\n";33 in __autoload(FOO)35 in __autoload(FOO)
2 Bug #30234 (__autoload() not invoked for interfaces)10 function __autoload($class_name)33 __autoload(autoload_interface)34 __autoload(Autoload_Implements)
34 echo "Try __autoload()\n";35 if (!function_exists('__autoload'))37 eval('function __autoload($class_name) { do_autoload($class_name); }');39 __autoload($class_name);126 // Now we have __autoload(), that will be called before the old style header.171 Try __autoload()179 Try __autoload()
Completed in 25 milliseconds