ns_076.phpt 801 B

12345678910111213141516171819202122232425262728
  1. --TEST--
  2. 076: Unknown constants in namespace
  3. --FILE--
  4. <?php
  5. namespace foo;
  6. $a = array(unknown => unknown);
  7. echo unknown;
  8. echo "\n";
  9. var_dump($a);
  10. echo \unknown;
  11. --EXPECTF--
  12. Warning: Use of undefined constant unknown - assumed 'unknown' (this will throw an Error in a future version of PHP) in %sns_076.php on line %d
  13. Warning: Use of undefined constant unknown - assumed 'unknown' (this will throw an Error in a future version of PHP) in %sns_076.php on line %d
  14. Warning: Use of undefined constant unknown - assumed 'unknown' (this will throw an Error in a future version of PHP) in %sns_076.php on line %d
  15. unknown
  16. array(1) {
  17. ["unknown"]=>
  18. %s(7) "unknown"
  19. }
  20. Fatal error: Uncaught Error: Undefined constant 'unknown' in %sns_076.php:%d
  21. Stack trace:
  22. #0 {main}
  23. thrown in %sns_076.php on line %d