025.phpt 230 B

1234567891011121314
  1. --TEST--
  2. Nullsafe chains in variable variables
  3. --FILE--
  4. <?php
  5. $a = null;
  6. var_dump(${$a?->b}->c);
  7. ?>
  8. --EXPECTF--
  9. Warning: Undefined variable $ in %s on line %d
  10. Warning: Attempt to read property "c" on null in %s on line %d
  11. NULL