|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2013-07-23 16:26 UTC] tyrael@php.net
Description: ------------ I just bumped into an issue, where we had a Strict error triggered about an abstract class, which caused our autoloader to fail. It seems that the autoloader won't be called when you try to reference a not-yet- loaded class from an error handler triggered by an autoloader function. I think that the attached test script makes the scenario more clear(sorry for the eval part, I didn't wanted to upload multiple scripts), but feel free to ask me if you need more info. ps: it seems that this never worked http://3v4l.org/AQCue but I couldn't find any previous reports or notes/docs on the topic. Test script: --------------- <?php spl_autoload_register(function($class){ if ($class == 'MyConcrete') { eval(' class MyConcrete extends MyAbstract { public static function createInstance() {} } '); } elseif ($class == 'MyAbstract') { eval(' abstract class MyAbstract { public abstract static function createInstance(); } '); } else { eval('class '.$class.'{}'); } }); set_error_handler(function($errno, $errstr, $errfile, $errline){ $myclass = new MyClass; }); $concrete = new MyConcrete; $myclass = new MyClass; Expected result: ---------------- trigger the autoloader from the error handler and load the class Actual result: -------------- Fatal error: Class 'MyClass' not found in index.php(14) : eval()'d code on line 3 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 07:00:01 2025 UTC |
Hey, it should be a intention behavior: zend_class_entry *zend_fetch_class_by_name(const char *class_name, uint class_name_len, const zend_literal *key, int fetch_type TSRMLS_DC) /* {{{ */ { zend_class_entry **pce; int use_autoload = (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) == 0; it seems try to prevent some recursive autoload, then stack overflow so.... won't fix IMO (it's really a edge case :)) maybe document it instead? thanksmy previous comment is not right. it real reason is here, in (zend_lookup_class_ex): /* The compiler is not-reentrant. Make sure we __autoload() only during run- time * (doesn't impact fuctionality of __autoload() */ if (!use_autoload || zend_is_compiling(TSRMLS_C)) { if (!key) { free_alloca(lc_free, use_heap); } return FAILURE; } so, the error is trigged in compiling MyAbstract... so is in compile time... so,,