diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2021-02-22 09:38:44 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2021-02-22 09:38:44 +0100 |
commit | de03bc8eb717657262c63152d52bd63bf715b096 (patch) | |
tree | 4548ac7eb618c267cd048cc6fd4dede1d986807d | |
parent | fd3692ba41a6338905a38a8007ad61fa380f6fc1 (diff) | |
parent | ed4f90f0c7ba205defcbdd0079b14d883354eaa2 (diff) | |
download | php-git-de03bc8eb717657262c63152d52bd63bf715b096.tar.gz |
Merge branch 'PHP-8.0'
* PHP-8.0:
Fixed bug #80781
-rw-r--r-- | Zend/tests/bug80781.phpt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Zend/tests/bug80781.phpt b/Zend/tests/bug80781.phpt new file mode 100644 index 0000000000..eb5109add9 --- /dev/null +++ b/Zend/tests/bug80781.phpt @@ -0,0 +1,31 @@ +--TEST-- +Bug #80781: Error handler that throws ErrorException infinite loop +--FILE-- +<?php + +function handle(int $severity, string $message, string $file, int $line): bool { + if((error_reporting() & $severity) !== 0) { + throw new \ErrorException($message, 0, $severity, $file, $line); + } + + return true; // stfu operator +} + +set_error_handler('handle'); + +function getPlugin(string $plugin) : bool{ + return false; +} + +$data = []; +$array = []; +if (isset($array[$data]) or getPlugin($data)) { + +} + +?> +--EXPECTF-- +Fatal error: Uncaught TypeError: Illegal offset type in isset or empty in %s:%d +Stack trace: +#0 {main} + thrown in %s on line %d |