mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
The primary issue was already resolved in 7c3e487289,
but the particular example used in this bug report ran into an
additional issue on PHP 8, because I forgot to drop a number of
zend_bailout calls when switch require failure to throw.
6 lines
90 B
PHP
6 lines
90 B
PHP
<?php
|
|
|
|
register_shutdown_function(function() {
|
|
require 'path/to/an/unknown/file';
|
|
});
|