mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
9862296d46
I've previously addressed the case of assignments, but the same issue exists for isset and unset. Fixes oss-fuzz #29699.
9 lines
151 B
PHP
9 lines
151 B
PHP
--TEST--
|
|
Cannot append to $GLOBALS in isset()
|
|
--FILE--
|
|
<?php
|
|
isset($GLOBALS[]);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use [] for reading in %s on line %d
|