mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08: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
20 lines
277 B
PHP
20 lines
277 B
PHP
--TEST--
|
|
complex cases of variable assignment - 003
|
|
--FILE--
|
|
<?php
|
|
|
|
$var = 0.213123123;
|
|
$var1 = &$var;
|
|
$var = $var[1];
|
|
|
|
var_dump($var);
|
|
var_dump($var1);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Trying to access array offset on value of type float in %s on line %d
|
|
NULL
|
|
NULL
|
|
Done
|