Reflection Flashcards

1
Q

public ReflectionClass::__construct ( mixed $argument )

A

Construit un nouvel objet ReflectionClass.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

public static string ReflectionClass::export ( mixed $argument [, bool $return = false ] )

A

Exporte une classe reflétée.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

public mixed ReflectionClass::getConstant ( string $name )

A

Récupère une constante définie.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

public array ReflectionClass::getConstants ( void )

A

Récupère les constantes définies d’une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

public ReflectionMethod ReflectionClass::getConstructor ( void )

A

Récupère le constructeur d’une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

public array ReflectionClass::getDefaultProperties ( void )

A

Récupère les propriétés par défaut d’une classe (incluant l’héritage).

Note:

Cette méthode ne fonctionne que pour les propriétés statiques lorsqu'utilisées sur des classes internes. La valeur par défaut d'une propriété de classe statique ne peut pas être surveillée lors de l'utilisation de cette méthode sur des classes définies par l'utilisateur.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

public string ReflectionClass::getDocComment ( void )

A

Récupère les commentaires depuis une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

public int ReflectionClass::getEndLine ( void )

A

Récupère le numéro de la dernière ligne depuis une définition de classe, définie par l’utilisateur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

public ReflectionExtension ReflectionClass::getExtension ( void )

A

Récupère un objet ReflectionExtension pour l’extension qui définit la classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

public string ReflectionClass::getExtensionName ( void )

A

Récupère le nom de l’extension qui définit la classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

public string ReflectionClass::getFileName ( void )

A

Récupère le nom du fichier déclarant la classe considérée

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

public array ReflectionClass::getInterfaceNames ( void )

A

Récupère les noms des interfaces.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

public array ReflectionClass::getInterfaces ( void )

A

Récupère les interfaces.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

public ReflectionMethod ReflectionClass::getMethod ( string $name )

A

Récupère un objet ReflectionMethod pour une méthode d’une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

public array ReflectionClass::getMethods ([ int $filter ] )

A

Récupère un tableau de méthodes d’une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

public int ReflectionClass::getModifiers ( void )

A

Retourne un champ de bit représentant les modificateurs d’accès pour cette classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

public string ReflectionClass::getName ( void )

A

Récupère le nom de la classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

public string ReflectionClass::getNamespaceName ( void )

A

Récupère l’espace de noms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

public object ReflectionClass::getParentClass ( void )

A

Récupère la classe parente

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

public array ReflectionClass::getProperties ([ int $filter ] )

A

Récupère les propriétés reflétées.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

public ReflectionProperty ReflectionClass::getProperty ( string $name )

A

Récupère une ReflectionProperty pour une propriété d’une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

public string ReflectionClass::getShortName ( void )

A

Récupère le nom court d’une classe, c’est-à-dire, la partie sans l’espace de noms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

public int ReflectionClass::getStartLine ( void )

A

Récupère le numéro de ligne de départ.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

public array ReflectionClass::getStaticProperties ( void )

A

Récupère les propriétés statiques.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

public mixed ReflectionClass::getStaticPropertyValue ( string $name [, mixed &$def_value ] )

A

Récupère la valeur d’une propriété statique de la classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

public array ReflectionClass::getTraitAliases ( void )

A

Retourne un tableau des alias du trait

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

public array ReflectionClass::getTraitNames ( void )

A

Retourne un tableau de noms des traits utilisés par cette classe

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

public array ReflectionClass::getTraits ( void )

A

Retourne un tableau des traits utilisés par cette classe

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

public bool ReflectionClass::hasConstant ( string $name )

A

Vérifie si une constante spécifique est définie dans une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

public bool ReflectionClass::hasMethod ( string $name )

A

Vérifie si une méthode spécifique est définie dans une classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

public bool ReflectionClass::hasProperty ( string $name )

A

Vérifie si la propriété spécifiée est définie.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

public bool ReflectionClass::implementsInterface ( string $interface )

A

Vérifie si une classe implémente une interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

public bool ReflectionClass::inNamespace ( void )

A

Vérifie si une classe est définie dans un espace de noms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

public bool ReflectionClass::isAbstract ( void )

A

Vérifie si une classe est abstraite.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

public bool ReflectionClass::isCloneable ( void )

A

Retourne si cette classe est clonable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

public bool ReflectionClass::isFinal ( void )

A

Vérifie si une classe est finale.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

public bool ReflectionClass::isInstance ( object $object )

A

Vérifie si une classe est une instance d’une autre classe.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

public bool ReflectionClass::isInstantiable ( void )

A

Vérifie si une classe est instanciable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

public bool ReflectionClass::isInterface ( void )

A

Vérifie si une classe est une interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

public bool ReflectionClass::isInternal ( void )

A

Vérifie si une classe est définie comme interne par une extension, ou faisant partie du coeur, par opposition à une classe définie par l’utilisateur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

public bool ReflectionClass::isIterateable ( void )

A

Vérifie si la classe est itérable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

public bool ReflectionClass::isSubclassOf ( string $class )

A

Vérifie si la classe est une sous-classe de la classe spécifiée ou implémente une interface spécifiée.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

public bool ReflectionClass::isTrait ( void )

A

Renseigne s’il s’agit d’un trait

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

public bool ReflectionClass::isUserDefined ( void )

A

Vérifie si une classe a été définie dans l’espace utilisateur, plutôt qu’en interne.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

public object ReflectionClass::newInstance ( mixed $args [, mixed $… ] )

A

Créer une nouvelle instance de la classe en utilisant les arguments fournis qui seront distribués à son constructeur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
46
Q

public object ReflectionClass::newInstanceArgs ([ array $args ] )

A

Créer une nouvelle instance de la classe en utilisant les arguments fournis pour les passer au constructeur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
47
Q

public object ReflectionClass::newInstanceWithoutConstructor ( void )

A

Crée une nouvelle instance de la classe sans invoquer son constructeur.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
48
Q

public void ReflectionClass::setStaticPropertyValue ( string $name , string $value )

A

Définit la valeur d’une propriété statiques.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
49
Q

public string ReflectionClass::__toString ( void )

A

Crée une représentation textuelle de l’objet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
50
Q

final private void ReflectionZendExtension::__clone ( void )

A

Gestionnaire de clonage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
51
Q

public ReflectionZendExtension::__construct ( string $name )

A

Constructeur

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
52
Q

public static string ReflectionZendExtension::export ( string $name [, string $return ] )

A

Export

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
53
Q

public string ReflectionZendExtension::getAuthor ( void )

A

Récupère l’auteur

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
54
Q

public string ReflectionZendExtension::getCopyright ( void )

A

Récupère le copyright

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
55
Q

public string ReflectionZendExtension::getName ( void )

A

Récupère le nom

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
56
Q

public string ReflectionZendExtension::getURL ( void )

A

Récupère l’URL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
57
Q

public string ReflectionZendExtension::getVersion ( void )

A

Récupère la version

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
58
Q

public string ReflectionZendExtension::__toString ( void )

A

Gestionnaire de conversion en chaîne de caractères

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
59
Q

final private void ReflectionExtension::__clone ( void )

A

La méthode clone empêche un objet d’être cloné. Les objets de réflexion ne peuvent être clonés.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
60
Q

public ReflectionExtension::__construct ( string $name )

A

Construit un nouvel objet ReflectionExtension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
61
Q

public static string ReflectionExtension::export ( string $name [, string $return = false ] )

A

Exporte une extension reflétée. Le format de retour de cette fonction est similaire à celui du CLI appelé avec l’option –re [extension].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
62
Q

public array ReflectionExtension::getClasses ( void )

A

Récupère une liste des classes d’une extension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
63
Q

public array ReflectionExtension::getClassNames ( void )

A

Récupère une liste des noms de classes définies dans l’extension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
64
Q

public array ReflectionExtension::getConstants ( void )

A

Récupère les constantes d’une extension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
65
Q

public array ReflectionExtension::getDependencies ( void )

A

Récupère les dépendances, en listant à la fois les dépendances requises, mais aussi les dépendances en conflits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
66
Q

public array ReflectionExtension::getFunctions ( void )

A

Récupère les fonctions d’une extension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
67
Q

public array ReflectionExtension::getINIEntries ( void )

A

Récupère les entrées ini de l’extension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
68
Q

public string ReflectionExtension::getName ( void )

A

Récupère le nom de l’extension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
69
Q

public string ReflectionExtension::getVersion ( void )

A

Récupère la version de l’extension.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
70
Q

public void ReflectionExtension::info ( void )

A

Affiche des informations sur l’extension issues “phpinfo()”.

71
Q

public void ReflectionExtension::isPersistent ( void )

A

Vérifie si l’extension est persistante

72
Q

public void ReflectionExtension::isTemporary ( void )

A

Vérifie si l’extension est temporaire

73
Q

public string ReflectionExtension::__toString ( void )

A

Exporte une extension reflétée et retourne le résultat sous forme de string. Cette méthode est similaire à ReflectionExtension::export() appelée avec le paramètre return à TRUE.

74
Q

public ReflectionFunction::__construct ( mixed $name )

A

Construit un nouvel objet ReflectionFunction

75
Q

public static string ReflectionFunction::export ( string $name [, string $return ] )

A

Exporte une fonction reflétée.

76
Q

public Closure ReflectionFunction::getClosure ( void )

A

Retourne une fermeture créée dynamiquement par la fonction

77
Q

public mixed ReflectionFunction::invoke ([ mixed $parameter [, mixed $… ]] )

A

Invoque une fonction reflétée.

78
Q

public mixed ReflectionFunction::invokeArgs ( array $args )

A

Invoque la fonction et lui passe les arguments sous la forme d’un tableau.

79
Q

public bool ReflectionFunction::isDisabled ( void )

A

Vérifie si une fonction est désactivée, via la directive disable_functions.

80
Q

public string ReflectionFunction::__toString ( void )

A

Récupère une représentation textuelle.

81
Q

final private void ReflectionFunctionAbstract::__clone ( void )

A

Clone une fonction.

82
Q

public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass ( void )

A

Retourne le contexte associé à la closure

83
Q

public object ReflectionFunctionAbstract::getClosureThis ( void )

A

Retourne le pointeur lié à la fermeture

84
Q

public string ReflectionFunctionAbstract::getDocComment ( void )

A

Récupère un commentaire

85
Q

public int ReflectionFunctionAbstract::getEndLine ( void )

A

Récupère le numéro de la dernière ligne.

86
Q

public ReflectionExtension ReflectionFunctionAbstract::getExtension ( void )

A

Récupère les informations d’une extension.

87
Q

public string ReflectionFunctionAbstract::getExtensionName ( void )

A

Récupère le nom de l’extension.

88
Q

public string ReflectionFunctionAbstract::getFileName ( void )

A

Récupère le nom du fichier depuis une fonction définie dans l’espace utilisateur.

89
Q

public string ReflectionFunctionAbstract::getName ( void )

A

Récupère le nom d’une fonction.

90
Q

public string ReflectionFunctionAbstract::getNamespaceName ( void )

A

Récupère l’espace de noms depuis lequel la classe est définie.

91
Q

public int ReflectionFunctionAbstract::getNumberOfParameters ( void )

A

Récupère le nombre de paramètres défini dans la fonction ; aussi bien les paramètres requis qu’optionnels.

92
Q

public int ReflectionFunctionAbstract::getNumberOfRequiredParameters ( void )

A

Récupère le nombre de paramètres requis par une fonction.

93
Q

public array ReflectionFunctionAbstract::getParameters ( void )

A

Récupère les paramètres, sous la forme d’un tableau d’objets ReflectionParameter.

94
Q

public string ReflectionFunctionAbstract::getShortName ( void )

A

Récupère le nom court d’une fonction (sans la partie concernant l’espace de noms).

95
Q

public int ReflectionFunctionAbstract::getStartLine ( void )

A

Récupère le numéro de ligne de départ de la fonction.

96
Q

public array ReflectionFunctionAbstract::getStaticVariables ( void )

A

Récupère les variables statiques.

97
Q

public bool ReflectionFunctionAbstract::inNamespace ( void )

A

Vérifie si une fonction est dans un espace de noms.

98
Q

public bool ReflectionFunctionAbstract::isClosure ( void )

A

Vérifie si la fonction réfléchie est une Closure.

99
Q

public bool ReflectionFunctionAbstract::isDeprecated ( void )

A

Vérifie si la fonction est obsolète.

100
Q

public bool ReflectionFunctionAbstract::isGenerator ( void )

A

Vérifie si la fonction est un générateur

101
Q

public bool ReflectionFunctionAbstract::isInternal ( void )

A

Vérifie si la fonction est une fonction interne, au lieu d’une fonction définie dans l’espace utilisateur.

102
Q

public bool ReflectionFunctionAbstract::isUserDefined ( void )

A

Vérifie si la fonction est définie dans l’espace utilisateur, au lieu d’être une fonction interne.

103
Q

public bool ReflectionFunctionAbstract::isVariadic ( void )

A

Vérifie si la fonction est variadique.

104
Q

public bool ReflectionFunctionAbstract::returnsReference ( void )

A

Vérifie si la fonction retourne une référence.

105
Q

abstract public void ReflectionFunctionAbstract::__toString ( void )

A

Récupère une représentation textuelle.

106
Q

public ReflectionMethod::__construct ( string $class_method )

A

Construit un nouvel objet ReflectionMethod.

107
Q

public static string ReflectionMethod::export ( string $class , string $name [, bool $return = false ] )

A

Exporte un objet ReflectionMethod.

108
Q

public Closure ReflectionMethod::getClosure ( object $object )

A

Retourne une fermeture créée dynamiquement pour la méthode

109
Q

public ReflectionClass ReflectionMethod::getDeclaringClass ( void )

A

Récupère la déclaration de la classe de la méthode réléchie

110
Q

public int ReflectionMethod::getModifiers ( void )

A

Retourne un champ de bits de modificateurs d’accès pour cette méthode.

111
Q

public ReflectionMethod ReflectionMethod::getPrototype ( void )

A

Récupère le prototype de la méthode (s’il existe)

112
Q

public mixed ReflectionMethod::invoke ( object $object [, mixed $parameter [, mixed $… ]] )

A

Invoque une méthode reflétée.

113
Q

public mixed ReflectionMethod::invokeArgs ( object $object , array $args )

A

Invoque la méthode réfléchie et lui passe les arguments sous la forme d’un tableau.

114
Q

public bool ReflectionMethod::isAbstract ( void )

A

Vérifie si la méthode est abstraite.

115
Q

public bool ReflectionMethod::isConstructor ( void )

A

Vérifie si la méthode est un constructeur.

116
Q

public bool ReflectionMethod::isDestructor ( void )

A

Vérifie si la méthode est un destructeur.

117
Q

public bool ReflectionMethod::isFinal ( void )

A

Vérifie si la méthode est finale.

118
Q

public bool ReflectionMethod::isPrivate ( void )

A

Vérifie si la méthode est privée.

119
Q

public bool ReflectionMethod::isProtected ( void )

A

Vérifie si la méthode est protégée.

120
Q

public bool ReflectionMethod::isPublic ( void )

A

Vérifie si la méthode est publique.

121
Q

public bool ReflectionMethod::isStatic ( void )

A

Vérifie si la méthode est statique.

122
Q

public void ReflectionMethod::setAccessible ( bool $accessible )

A

Définit l’accessibilité de la méthode. Par exemple, ceci permet d’invoquer des méthodes protégées et privées.

123
Q

public string ReflectionMethod::__toString ( void )

A

Récupère une représentation textuelle de la méthode.

124
Q

public ReflectionObject::__construct ( object $argument )

A

Construit un nouvel objet ReflectionObject.

125
Q

public static string ReflectionObject::export ( string $argument [, bool $return ] )

A

Exporte une réflexion.

126
Q

public bool ReflectionParameter::allowsNull ( void )

A

Vérifie si la valeur NULL est autorisée comme valeur du paramètre.

127
Q

public bool ReflectionParameter::canBePassedByValue ( void )

A

Vérifie si le paramètre peut être passé par valeur

128
Q

final private void ReflectionParameter::__clone ( void )

A

Clonage.

129
Q

public ReflectionParameter::__construct ( string $function , string $parameter )

A

Construit une nouvelle classe ReflectionParameter.

130
Q

public static string ReflectionParameter::export ( string $function , string $parameter [, bool $return ] )

A

Exportation

131
Q

public ReflectionClass ReflectionParameter::getClass ( void )

A

Récupère la classe de typage d’objets pour le paramètre comme un objet ReflectionClass.

132
Q

public ReflectionClass ReflectionParameter::getDeclaringClass ( void )

A

Récupère la classe déclarante.

133
Q

public ReflectionFunctionAbstract ReflectionParameter::getDeclaringFunction ( void )

A

Récupère la fonction déclarante.

134
Q

public mixed ReflectionParameter::getDefaultValue ( void )

A

Récupère la valeur par défaut du paramètre d’une fonction ou d’une méthode définie dans l’espace utilisateur. Si le paramètre n’est pas optionnel, une exception ReflectionException sera émise.

135
Q

public mixed ReflectionParameter::getDefaultValue ( void )

A

Récupère la valeur par défaut du paramètre d’une fonction ou d’une méthode définie dans l’espace utilisateur. Si le paramètre n’est pas optionnel, une exception ReflectionException sera émise.

136
Q

public string ReflectionParameter::getDefaultValueConstantName ( void )

A

Retourne le nom de la constante de la valeur par défaut si la valeur est une constante, NULL sinon

137
Q

public string ReflectionParameter::getName ( void )

A

Récupère le nom du paramètre.

138
Q

public int ReflectionParameter::getPosition ( void )

A

Récupère la position d’un paramètre

139
Q

public bool ReflectionParameter::isArray ( void )

A

Vérifie si le paramètre attend un tableau

140
Q

public bool ReflectionParameter::isArray ( void )

A

Vérifie si le paramètre attend un tableau

141
Q

public bool ReflectionParameter::isCallable ( void )

A

Vérifie si le paramètre est de type callable

142
Q

public bool ReflectionParameter::isDefaultValueAvailable ( void )

A

Vérifie si une valeur par défaut est disponible pour le paramètre.

143
Q

public bool ReflectionParameter::isDefaultValueConstant ( void )

A

Vérifie si la valeur par défaut du paramètre est une constante

144
Q

public bool ReflectionParameter::isDefaultValueConstant ( void )

A

Vérifie si la valeur par défaut du paramètre est une constante

145
Q

public bool ReflectionParameter::isOptional ( void )

A

Vérifie si le paramètre est optionnel.

146
Q

public bool ReflectionParameter::isPassedByReference ( void )

A

Vérifie si le paramètre est passé par référence.

147
Q

public bool ReflectionParameter::isPassedByReference ( void )

A

Vérifie si le paramètre est passé par référence.

148
Q

public bool ReflectionParameter::isVariadic ( void )

A

Vérifie si le paramètre est variadique

149
Q

public bool ReflectionParameter::isVariadic ( void )

A

Vérifie si le paramètre est variadique

150
Q

public string ReflectionParameter::__toString ( void )

A

Récupère une représentation textuelle.

151
Q

public string ReflectionParameter::__toString ( void )

A

Récupère une représentation textuelle.

152
Q

final private void ReflectionProperty::__clone ( void )

A

Clonage.

153
Q

public ReflectionProperty::__construct ( mixed $class , string $name )

A

Construit un nouvel objet ReflectionProperty

154
Q

public static string ReflectionProperty::export ( mixed $class , string $name [, bool $return ] )

A

Exporte une réflexion.

155
Q

public ReflectionClass ReflectionProperty::getDeclaringClass ( void )

A

Récupère la classe déclarante.

156
Q

public string ReflectionProperty::getDocComment ( void )

A

Récupère un commentaire.

157
Q

public int ReflectionProperty::getModifiers ( void )

A

Récupère les modificateurs.

158
Q

public int ReflectionProperty::getModifiers ( void )

A

Récupère les modificateurs.

159
Q

public string ReflectionProperty::getName ( void )

A

Récupère le nom de la proriété.

160
Q

public mixed ReflectionProperty::getValue ([ object $object ] )

A

Récupère la valeur de la propriété

161
Q

public mixed ReflectionProperty::getValue ([ object $object ] )

A

Récupère la valeur de la propriété

162
Q

public bool ReflectionProperty::isDefault ( void )

A

Vérifie si la propriété est celle par défaut

163
Q

public bool ReflectionProperty::isPrivate ( void )

A

Vérifie si la propriété est privée.

164
Q

public bool ReflectionProperty::isPrivate ( void )

A

Vérifie si la propriété est privée.

165
Q

public bool ReflectionProperty::isProtected ( void )

A

Vérifie si la propriété est protégée

166
Q

public bool ReflectionProperty::isProtected ( void )

A

Vérifie si la propriété est protégée

167
Q

public bool ReflectionProperty::isPublic ( void )

A

Vérifie si la propriété est publique.

168
Q

public bool ReflectionProperty::isStatic ( void )

A

Vérifie si la propriété est statique.

169
Q

public bool ReflectionProperty::isStatic ( void )

A

Vérifie si la propriété est statique.

170
Q

public void ReflectionProperty::setAccessible ( bool $accessible )

A

Définit l’accessibilité de la propriété

171
Q

public void ReflectionProperty::setValue ( object $object , mixed $value )

A

Définit (modifie) la valeur de la propriété.

172
Q

public string ReflectionProperty::__toString ( void )

A

Récupère une représentation textuelle

173
Q

public static string Reflector::export ( void )

A

Export

174
Q

public string Reflector::__toString ( void )

A

Conversion en chaîne de caractères.