mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
39 lines
671 B
PHP
39 lines
671 B
PHP
--TEST--
|
|
Reflection Bug #29523 (ReflectionParameter::isOptional() is incorrect)
|
|
--FILE--
|
|
<?php
|
|
|
|
class TestClass
|
|
{
|
|
}
|
|
|
|
function optionalTest(TestClass $a, TestClass $b, $c = 3)
|
|
{
|
|
}
|
|
|
|
$function = new ReflectionFunction('optionalTest');
|
|
$numberOfNotOptionalParameters = 0;
|
|
$numberOfOptionalParameters = 0;
|
|
foreach($function->getParameters() as $parameter)
|
|
{
|
|
var_dump($parameter->isOptional());
|
|
if ($parameter->isOptional())
|
|
{
|
|
++$numberOfOptionalParameters;
|
|
}
|
|
else
|
|
{
|
|
++$numberOfNotOptionalParameters;
|
|
}
|
|
}
|
|
var_dump($function->getNumberOfRequiredParameters());
|
|
var_dump($numberOfNotOptionalParameters);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(false)
|
|
bool(true)
|
|
int(2)
|
|
int(2)
|