| Bug #33312 | ReflectionParameter methods do not work correctly | ||||
|---|---|---|---|---|---|
| Submitted: | 11 Jun 2005 4:03pm UTC | Modified: | 13 Jun 2005 11:41am UTC | ||
| From: | sb at sebastian-bergmann dot de | Assigned to: | dmitry | ||
| Status: | Closed | Category: | Scripting Engine problem | ||
| Version: | 5CVS-2005-06-11 (dev) | OS: | Windows XP | ||
[13 Jun 2005 10:43am UTC] sniper@php.net
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better.
[13 Jun 2005 11:41am UTC] dmitry@php.net
Fixed in CVS HEAD.

Description: ------------ The ReflectionParameter::isDefaultValueAvailable() and ReflectionParameter::getDefaultValue() methods only work correctly when the method only has one parameter. When the method has more than one parameter, ReflectionParameter::isDefaultValueAvailable() returns FALSE for a parameter that has a default value and ReflectionParameter::getDefaultValue() produces an error when trying to access the default value. The reproducing script below works fine with the current PHP_5_0 branch. With HEAD it prints nothing. Only after removing "Foo $foo, " from the method signature does it print "bar". Reproduce code: --------------- <?php class Foo { public function bar(Foo $foo, $bar = 'bar') { } } $class = new ReflectionClass('Foo'); $method = $class->getMethod('bar'); foreach ($method->getParameters() as $parameter) { if ($parameter->isDefaultValueAvailable()) { print $parameter->getDefaultValue(); } } ?> Expected result: ---------------- bar