php-src/ext/reflection/tests/ReflectionParameter_DefaultValueConstant_error.phpt
Máté Kocsis 3709e74b5e
Store default parameter values of internal functions in arg info
Closes GH-5353. From now on, PHP will have reflection information
about default values of parameters of internal functions.

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
2020-04-08 18:37:51 +02:00

22 lines
581 B
PHP

--TEST--
ReflectionParameter::getDefaultValueConstant() should raise exception on non optional parameter
--FILE--
<?php
define("CONST_TEST_1", "const1");
function ReflectionParameterTest($test, $test2 = CONST_TEST_1) {
echo $test;
}
$reflect = new ReflectionFunction('ReflectionParameterTest');
foreach($reflect->getParameters() as $param) {
try {
echo $param->getDefaultValueConstantName() . "\n";
} catch(ReflectionException $e) {
echo $e->getMessage() . "\n";
}
}
?>
--EXPECT--
Internal error: Failed to retrieve the default value
CONST_TEST_1