033.phpt 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. --TEST--
  2. Using undefined multidimensional array
  3. --FILE--
  4. <?php
  5. $arr[1][2][3][4][5];
  6. echo $arr[1][2][3][4][5];
  7. $arr[1][2][3][4][5]->foo;
  8. try {
  9. $arr[1][2][3][4][5]->foo = 1;
  10. } catch (Error $e) {
  11. echo $e->getMessage(), "\n";
  12. }
  13. $arr[][] = 2;
  14. try {
  15. $arr[][]->bar = 2;
  16. } catch (Error $e) {
  17. echo $e->getMessage(), "\n";
  18. }
  19. ?>
  20. --EXPECTF--
  21. Warning: Undefined variable $arr in %s on line %d
  22. Warning: Trying to access array offset on value of type null in %s on line %d
  23. Warning: Trying to access array offset on value of type null in %s on line %d
  24. Warning: Trying to access array offset on value of type null in %s on line %d
  25. Warning: Trying to access array offset on value of type null in %s on line %d
  26. Warning: Trying to access array offset on value of type null in %s on line %d
  27. Warning: Undefined variable $arr in %s on line %d
  28. Warning: Trying to access array offset on value of type null in %s on line %d
  29. Warning: Trying to access array offset on value of type null in %s on line %d
  30. Warning: Trying to access array offset on value of type null in %s on line %d
  31. Warning: Trying to access array offset on value of type null in %s on line %d
  32. Warning: Trying to access array offset on value of type null in %s on line %d
  33. Warning: Undefined variable $arr in %s on line %d
  34. Warning: Trying to access array offset on value of type null in %s on line %d
  35. Warning: Trying to access array offset on value of type null in %s on line %d
  36. Warning: Trying to access array offset on value of type null in %s on line %d
  37. Warning: Trying to access array offset on value of type null in %s on line %d
  38. Warning: Trying to access array offset on value of type null in %s on line %d
  39. Warning: Attempt to read property "foo" on null in %s on line %d
  40. Attempt to assign property "foo" on null
  41. Attempt to assign property "bar" on null