mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
I'm removing the argument entirely here, but we might want to change this to passing null or and empty array instead, if the impact of dropping it entirely turns out to be too large. This was deprecated as part of https://wiki.php.net/rfc/deprecations_php_7_2 as a doc-only deprecation.
18 lines
474 B
PHP
18 lines
474 B
PHP
--TEST--
|
|
Bug #76534 (PHP hangs on 'illegal string offset on string references with an error handler)
|
|
--FILE--
|
|
<?php
|
|
set_error_handler(function ($severity, $message, $file, $line) {
|
|
throw new \Exception($message);
|
|
});
|
|
|
|
$x = "foo";
|
|
$y = &$x["bar"];
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Exception: Illegal string offset 'bar' in %sbug76534.php:%d
|
|
Stack trace:
|
|
#0 %sbug76534.php(%d): {closure}(2, 'Illegal string ...', '%s', %d)
|
|
#1 {main}
|
|
thrown in %sbug76534.php on line %d
|