mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
13 lines
284 B
PHP
13 lines
284 B
PHP
--TEST--
|
|
Bug #24773 (unset() of integers treated as arrays causes a crash)
|
|
--FILE--
|
|
<?php
|
|
$array = 'test';
|
|
unset($array["lvl1"]["lvl2"]["b"]);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot use string offset as an array in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|