constants_008.phpt 211 B

1234567891011121314151617
  1. --TEST--
  2. Defining constant twice with two different forms
  3. --FILE--
  4. <?php
  5. define('a', 2);
  6. const a = 1;
  7. if (defined('a')) {
  8. print a;
  9. }
  10. ?>
  11. --EXPECTF--
  12. Warning: Constant a already defined in %s on line %d
  13. 2