mirror of
https://github.com/php/php-src.git
synced 2026-04-13 02:52:48 +02:00
16 lines
271 B
PHP
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
|