php-8.0.30-src/Zend/tests/nullsafe_operator/025.phpt

15 lines
230 B
PHP

--TEST--
Nullsafe chains in variable variables
--FILE--
<?php
$a = null;
var_dump(${$a?->b}->c);
?>
--EXPECTF--
Warning: Undefined variable $ in %s on line %d
Warning: Attempt to read property "c" on null in %s on line %d
NULL