ReflectionObject_getConstant_error.phpt 909 B

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