php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #41525 ReflectionParameter::getPosition() not available
Submitted: 2007-05-29 06:58 UTC Modified: 2007-05-29 08:44 UTC
From: toby@php.net Assigned: helly (profile)
Status: Closed Package: Class/Object related
PHP Version: 5.2.2 OS: *
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: toby@php.net
New email:
PHP Version: OS:

 

 [2007-05-29 06:58 UTC] toby@php.net
Description:
------------
The reflection documentation states that there is a method getPosition() on instances of ReflectionParameter since 5.1.3, but it does not exist (at least here).

Reproduce code:
---------------
dotxp@tango ~ $ php -a
Interactive shell

php > function foo($param) {}
php > $fkt = new ReflectionFunction("foo");
php > $pars = $fkt->getParameters();
php > $par = $pars[0];
php > var_dump($par->getPosition());

-------------------------------------------------------

dotxp@tango ~ $ php -a
Interactive shell

php > var_dump(get_class_methods("ReflectionParameter"));


Actual result:
--------------
Fatal error: Call to undefined method ReflectionParameter::getPosition() in php shell code on line 1

Call Stack:
   60.5766      68372   1. {main}() php shell code:0


-------------------------------------------------------

array(12) {
  [0]=>
  string(6) "export"
  [1]=>
  string(11) "__construct"
  [2]=>
  string(10) "__toString"
  [3]=>
  string(7) "getName"
  [4]=>
  string(19) "isPassedByReference"
  [5]=>
  string(17) "getDeclaringClass"
  [6]=>
  string(8) "getClass"
  [7]=>
  string(7) "isArray"
  [8]=>
  string(10) "allowsNull"
  [9]=>
  string(10) "isOptional"
  [10]=>
  string(23) "isDefaultValueAvailable"
  [11]=>
  string(15) "getDefaultValue"
}


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-05-29 08:26 UTC] bjori@php.net
getPosition() & getDeclaringFunction() are still ifdefed out
 [2007-05-29 08:44 UTC] helly@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.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Nov 21 11:01:29 2024 UTC