suche nach in der

ReflectionProperty::__clone> <ReflectionParameter::__toString
Last updated: Sat, 07 Jan 2012

view this page in

The ReflectionProperty class

(PHP 5)

Einführung

The ReflectionProperty class reports information about classes properties.

Klassenbeschreibung

ReflectionProperty implements Reflector {
/* Konstanten */
const integer IS_STATIC = 1 ;
const integer IS_PUBLIC = 256 ;
const integer IS_PROTECTED = 512 ;
const integer IS_PRIVATE = 1024 ;
/* Eigenschaften */
public $class ;
/* Methoden */
final private void ReflectionProperty::__clone ( void )
ReflectionProperty::__construct ( mixed $class , string $name )
public static string ReflectionProperty::export ( mixed $class , string $name [, bool $return ] )
public ReflectionClass ReflectionProperty::getDeclaringClass ( void )
public string ReflectionProperty::getDocComment ( void )
public string ReflectionProperty::getName ( void )
public mixed ReflectionProperty::getValue ( object $object )
public bool ReflectionProperty::isDefault ( void )
public bool ReflectionProperty::isPrivate ( void )
public bool ReflectionProperty::isProtected ( void )
public bool ReflectionProperty::isPublic ( void )
public bool ReflectionProperty::isStatic ( void )
public void ReflectionProperty::setAccessible ( bool $accessible )
public void ReflectionProperty::setValue ( object $object , mixed $value )
public string ReflectionProperty::__toString ( void )
}

Eigenschaften

name

Name of the property. Read-only, throws ReflectionException in attempt to write.

class

Name of the class where the property is defined. Read-only, throws ReflectionException in attempt to write.

Vordefinierte Konstanten

ReflectionProperty Modifiers

ReflectionProperty::IS_STATIC

Indicates static properties.

ReflectionProperty::IS_PUBLIC

Indicates public properties.

ReflectionProperty::IS_PROTECTED

Indicates protected properties.

ReflectionProperty::IS_PRIVATE

Indicates private properties.

Inhaltsverzeichnis



add a note add a note User Contributed Notes
ReflectionProperty
There are no user contributed notes for this page.