ReflectionClass_getConstant_error.phpt 955 B

12345678910111213141516171819202122232425262728293031323334353637
  1. --TEST--
  2. ReflectionClass::getConstant() - bad params
  3. --FILE--
  4. <?php
  5. class C {
  6. const myConst = 1;
  7. }
  8. $rc = new ReflectionClass("C");
  9. echo "Check invalid params:\n";
  10. var_dump($rc->getConstant());
  11. var_dump($rc->getConstant("myConst", "myConst"));
  12. var_dump($rc->getConstant(null));
  13. var_dump($rc->getConstant(1));
  14. var_dump($rc->getConstant(1.5));
  15. var_dump($rc->getConstant(true));
  16. var_dump($rc->getConstant(array(1,2,3)));
  17. var_dump($rc->getConstant(new C));
  18. ?>
  19. --EXPECTF--
  20. Check invalid params:
  21. Warning: ReflectionClass::getConstant() expects exactly 1 parameter, 0 given in %s on line 8
  22. NULL
  23. Warning: ReflectionClass::getConstant() expects exactly 1 parameter, 2 given in %s on line 9
  24. NULL
  25. bool(false)
  26. bool(false)
  27. bool(false)
  28. bool(false)
  29. Warning: ReflectionClass::getConstant() expects parameter 1 to be string, array given in %s on line 14
  30. NULL
  31. Warning: ReflectionClass::getConstant() expects parameter 1 to be string, object given in %s on line 15
  32. NULL