php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #39876 ReflectionParameter::getDeclaringFunction() method not available
Submitted: 2006-12-18 21:16 UTC Modified: 2007-08-17 05:06 UTC
From: bugs at php dot frankkleine dot de Assigned:
Status: Closed Package: Documentation problem
PHP Version: 5.2.0 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: bugs at php dot frankkleine dot de
New email:
PHP Version: OS:

 

 [2006-12-18 21:16 UTC] bugs at php dot frankkleine dot de
Description:
------------
The manual states on http://www.php.net/manual/en/language.oop5.reflection.php that the ReflectionParameter::getDeclaringFunction() method is available since PHP 5.1.3. However this method is neither available in 5.1.4 nor in 5.2.

Reproduce code:
---------------
function test1($param) {}
$refParam = new ReflectionParameter('test1', 'param');
var_dump($refParam->getDeclaringFunction());

Expected result:
----------------
object(ReflectionFunction)[1]
  public 'name' => 'test1' (length=5)


Actual result:
--------------
Fatal error: Call to undefined method ReflectionParameter::getDeclaringFunction() in E:\php\tests\reflection_parameter.php on line 4

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-12-19 05:59 UTC] judas dot iscariote at gmail dot com
either the docs needs fixing, or the #if MBO_0 's in php_reflection.c needs to removed ;)
 [2006-12-19 17:26 UTC] thekid@php.net
This is the commit that included the MBO_0s:

revision 1.164.2.32
date: 2006/03/12 17:22:34;  author: helly;  state: Exp;  lines: +66 -10

[...]
  . (inactive but tested) Add getDeclaringFunction()
  . (inactive but tested) Add getPosition()
[...]

Sadly, no reason is given why these methods are "inactive but tested".
 [2006-12-20 22:21 UTC] bugs at php dot frankkleine dot de
Summary was changed to a wrong title, corrected this.
 [2007-08-17 05:06 UTC] vrana@php.net
This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation better.

Available as of PHP 5.2.3.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 16:01:30 2024 UTC