1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/reflection/tests/bug62715.phpt

25 lines
460 B
PHP

--TEST--
Bug #62715 (ReflectionParameter::isDefaultValueAvailable() wrong result)
--FILE--
<?php
function test(PDO $a = null, $b = 0, array $c) {}
$r = new ReflectionFunction('test');
foreach ($r->getParameters() as $p) {
var_dump($p->isDefaultValueAvailable());
}
foreach ($r->getParameters() as $p) {
if ($p->isDefaultValueAvailable()) {
var_dump($p->getDefaultValue());
}
}
?>
--EXPECT--
bool(true)
bool(true)
bool(false)
NULL
int(0)