mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
Replace EG(autoload_func) with a C level zend_autoload hook. This avoids having to do one indirection through PHP function calls. The need for EG(autoload_func) was a leftover from the __autoload() implementation. Additionally, drop special-casing of spl_autoload(), and instead register it just like any other autoloading function. This fixes bug #71236 as a side-effect. Finally, change spl_autoload_functions() to always return an array. The distinction between false and an empty array no longer makes sense here. Closes GH-5696.
26 lines
457 B
PHP
26 lines
457 B
PHP
--TEST--
|
|
Bug #65161: Generator + autoload + syntax error = segfault
|
|
--FILE--
|
|
<?php
|
|
|
|
function autoload() {
|
|
foo();
|
|
}
|
|
spl_autoload_register('autoload');
|
|
|
|
function testGenerator() {
|
|
new SyntaxError('param');
|
|
yield;
|
|
}
|
|
|
|
foreach (testGenerator() as $i);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Call to undefined function foo() in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): autoload('SyntaxError')
|
|
#1 %s(%d): testGenerator()
|
|
#2 {main}
|
|
thrown in %s on line %d
|