mirror of
https://github.com/php/php-src.git
synced 2026-04-10 17:43:13 +02:00
No notice is thrown for list() accesses, because we did not come
to an agreement regarding patterns like
while ([$key, $value] = yield $it->next()) { ... }
where silent null access may be desirable.
No effort is made to suppress multiple notices in access chains
likes $x[0][0][0], because the technical complexity this causes
does not seem worthwhile.
RFC: https://wiki.php.net/rfc/notice-for-non-valid-array-container
61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
--TEST--
|
|
Using undefined multidimensional array
|
|
--FILE--
|
|
<?php
|
|
|
|
$arr[1][2][3][4][5];
|
|
|
|
echo $arr[1][2][3][4][5];
|
|
|
|
$arr[1][2][3][4][5]->foo;
|
|
|
|
$arr[1][2][3][4][5]->foo = 1;
|
|
|
|
$arr[][] = 2;
|
|
|
|
$arr[][]->bar = 2;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined variable: arr in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Undefined variable: arr in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Undefined variable: arr in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Notice: Trying to get property 'foo' of non-object in %s on line %d
|
|
|
|
Warning: Creating default object from empty value in %s on line %d
|
|
|
|
Warning: Creating default object from empty value in %s on line %d
|