ReflectionClass_getConstants_error.phpt 633 B

123456789101112131415161718192021222324
  1. --TEST--
  2. ReflectionClass::getConstants()
  3. --FILE--
  4. <?php
  5. class X {
  6. }
  7. $rc = new reflectionClass('X');
  8. //Test invalid arguments
  9. $rc->getConstants('X');
  10. $rc->getConstants(true);
  11. $rc->getConstants(null);
  12. $rc->getConstants('A', 'B');
  13. ?>
  14. --EXPECTF--
  15. Warning: ReflectionClass::getConstants() expects exactly 0 parameters, 1 given in %s on line %d
  16. Warning: ReflectionClass::getConstants() expects exactly 0 parameters, 1 given in %s on line %d
  17. Warning: ReflectionClass::getConstants() expects exactly 0 parameters, 1 given in %s on line %d
  18. Warning: ReflectionClass::getConstants() expects exactly 0 parameters, 2 given in %s on line %d