1234567891011121314151617 |
- --TEST--
- Bug
- --FILE--
- <?php
- set_error_handler(function ($severity, $message, $file, $line) {
- throw new \Exception($message);
- });
- $x = "foo";
- $y = &$x["2bar"];
- ?>
- --EXPECTF--
- Fatal error: Uncaught Exception: Illegal string offset "2bar" in %s:%d
- Stack trace:
- thrown in %sbug76534.php on line %d
|