mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
c42b7dd6d3
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
21 lines
406 B
PHP
21 lines
406 B
PHP
--TEST--
|
|
call_user_func() should not use FUNC_ARG fetches
|
|
--FILE--
|
|
<?php
|
|
|
|
function foo(&$ref) { $ref = 24; }
|
|
|
|
$a = [];
|
|
call_user_func('foo', $a[0][0]);
|
|
var_dump($a);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined offset: 0 in %s on line %d
|
|
|
|
Notice: Trying to access array offset on value of type null in %s on line %d
|
|
|
|
Warning: Parameter 1 to foo() expected to be a reference, value given in %s on line %d
|
|
array(0) {
|
|
}
|