1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 02:52:48 +02:00
Files
archived-php-src/ext/spl/tests/bug70852.phpt
2020-07-10 21:05:28 +02:00

16 lines
271 B
PHP

--TEST--
Bug #70852 Segfault getting NULL offset of an ArrayObject
--FILE--
<?php
$y = new ArrayObject();
var_dump($y[NULL]);
var_dump($y[NULL]++);
?>
--EXPECTF--
Notice: Undefined array key "" in %s on line %d
NULL
Notice: Undefined array key "" in %s on line %d
NULL