php-src/ext/reflection/tests/ReflectionParameter_getDeclaringFunction_basic.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

35 lines
817 B
PHP

--TEST--
ReflectionParameter::getDeclaringFunction()
--CREDITS--
Stefan Koopmanschap <stefan@stefankoopmanschap.nl>
#testfest roosendaal on 2008-05-10
--FILE--
<?php
function ReflectionParameterTest($test, $test2 = null) {
echo $test;
}
$reflect = new ReflectionFunction('ReflectionParameterTest');
$params = $reflect->getParameters();
foreach($params as $key => $value) {
echo $value->getDeclaringFunction() . "\n";
}
?>
--EXPECTF--
Function [ <user> function ReflectionParameterTest ] {
@@ %s.php %d - %d
- Parameters [2] {
Parameter #0 [ <required> $test ]
Parameter #1 [ <optional> $test2 = NULL ]
}
}
Function [ <user> function ReflectionParameterTest ] {
@@ %s.php %d - %d
- Parameters [2] {
Parameter #0 [ <required> $test ]
Parameter #1 [ <optional> $test2 = NULL ]
}
}