ReflectionParameter::getPosition

(PHP 5 >= 5.1.3, PHP 7, PHP 8)

ReflectionParameter::getPositionGets parameter position

Descrizione

public ReflectionParameter::getPosition(): int

Gets the position of the parameter.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Vedere anche:

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