mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
13 lines
177 B
PHP
13 lines
177 B
PHP
--TEST--
|
|
errmsg: can't use [] for unsetting
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = array();
|
|
unset($a[]);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use [] for unsetting in %s on line %d
|