Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

reflectionproperty(3) [php man page]

REFLECTIONPROPERTY(3)							 1						     REFLECTIONPROPERTY(3)

The ReflectionProperty class

INTRODUCTION
The ReflectionProperty class reports information about classes properties. CLASS SYNOPSIS
ReflectionProperty ReflectionPropertyReflector Constants o const integer$ReflectionProperty::IS_STATIC1 o const integer$ReflectionProperty::IS_PUBLIC256 o const integer$ReflectionProperty::IS_PROTECTED512 o const integer$ReflectionProperty::IS_PRIVATE1024 Properties o public$name o public$class Methods o finalprivate void ReflectionProperty::__clone (void ) o public ReflectionProperty::__construct (mixed $class, string $name) o publicstatic string ReflectionProperty::export (mixed $class, string $name, [bool $return]) o public ReflectionClass ReflectionProperty::getDeclaringClass (void ) o public string ReflectionProperty::getDocComment (void ) o public int ReflectionProperty::getModifiers (void ) o public string ReflectionProperty::getName (void ) o public mixed ReflectionProperty::getValue ([object $object]) o public bool ReflectionProperty::isDefault (void ) o public bool ReflectionProperty::isPrivate (void ) o public bool ReflectionProperty::isProtected (void ) o public bool ReflectionProperty::isPublic (void ) o public bool ReflectionProperty::isStatic (void ) o public void ReflectionProperty::setAccessible (bool $accessible) o public void ReflectionProperty::setValue (object $object, mixed $value) o public string ReflectionProperty::__toString (void ) PROPERTIES
o $name - Name of the property. Read-only, throws ReflectionException in attempt to write. o $class - Name of the class where the property is defined. Read-only, throws ReflectionException in attempt to write. PREDEFINED CONSTANTS
REFLECTIONPROPERTY MODIFIERS
o ReflectionProperty::IS_STATIC - Indicates static properties. o ReflectionProperty::IS_PUBLIC - Indicates public properties. o ReflectionProperty::IS_PROTECTED - Indicates protected properties. o ReflectionProperty::IS_PRIVATE - Indicates private properties. PHP Documentation Group REFLECTIONPROPERTY(3)

Check Out this Related Man Page

SPLDOUBLYLINKEDLIST(3)							 1						    SPLDOUBLYLINKEDLIST(3)

The SplDoublyLinkedList class

INTRODUCTION
The SplDoublyLinkedList class provides the main functionalities of a doubly linked list. CLASS SYNOPSIS
SplDoublyLinkedList SplDoublyLinkedListIteratorArrayAccessCountable Methods o public SplDoublyLinkedList::__construct (void ) o public void SplDoublyLinkedList::add (mixed $index, mixed $newval) o public mixed SplDoublyLinkedList::bottom (void ) o public int SplDoublyLinkedList::count (void ) o public mixed SplDoublyLinkedList::current (void ) o public int SplDoublyLinkedList::getIteratorMode (void ) o public bool SplDoublyLinkedList::isEmpty (void ) o public mixed SplDoublyLinkedList::key (void ) o public void SplDoublyLinkedList::next (void ) o public bool SplDoublyLinkedList::offsetExists (mixed $index) o public mixed SplDoublyLinkedList::offsetGet (mixed $index) o public void SplDoublyLinkedList::offsetSet (mixed $index, mixed $newval) o public void SplDoublyLinkedList::offsetUnset (mixed $index) o public mixed SplDoublyLinkedList::pop (void ) o public void SplDoublyLinkedList::prev (void ) o public void SplDoublyLinkedList::push (mixed $value) o public void SplDoublyLinkedList::rewind (void ) o public string SplDoublyLinkedList::serialize (void ) o public void SplDoublyLinkedList::setIteratorMode (int $mode) o public mixed SplDoublyLinkedList::shift (void ) o public mixed SplDoublyLinkedList::top (void ) o public void SplDoublyLinkedList::unserialize (string $serialized) o public void SplDoublyLinkedList::unshift (mixed $value) o public bool SplDoublyLinkedList::valid (void ) PHP Documentation Group SPLDOUBLYLINKEDLIST(3)
Man Page