ReflectionParameter_DefaultValueConstant_error.phpt 558 B

1234567891011121314151617181920212223
  1. --TEST--
  2. ReflectionParameter::getDefaultValueConstant() should raise exception on non optional parameter
  3. --FILE--
  4. <?php
  5. define("CONST_TEST_1", "const1");
  6. function ReflectionParameterTest($test, $test2 = CONST_TEST_1) {
  7. echo $test;
  8. }
  9. $reflect = new ReflectionFunction('ReflectionParameterTest');
  10. foreach($reflect->getParameters() as $param) {
  11. try {
  12. echo $param->getDefaultValueConstantName() . "\n";
  13. }
  14. catch(ReflectionException $e) {
  15. echo $e->getMessage() . "\n";
  16. }
  17. }
  18. ?>
  19. --EXPECT--
  20. Internal error: Failed to retrieve the default value
  21. CONST_TEST_1