PHP Velho Oeste 2024

ReflectionParameter::getPosition

(PHP 5 >= 5.2.3, PHP 7)

ReflectionParameter::getPositionGets parameter position

설명

public int ReflectionParameter::getPosition ( void )

Gets the position of the parameter.

인수

이 함수는 인수가 없습니다.

반환값

The position of the parameter, left to right, starting at position #0.

참고

add a note add a note

User Contributed Notes 1 note

up
2
micah at raincross-tech dot com
13 years ago
Note that the ReflectionFunctionAbstract::getParameters() method will return the parameters in the correct order.
To Top