ReflectionClass
PHP Manual

ReflectionClass::getConstructor

(PHP 5)

ReflectionClass::getConstructorGets the constructor of the class

Opis

public ReflectionMethod ReflectionClass::getConstructor ( void )

Gets the constructor of the reflected class.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

A ReflectionMethod object reflecting the class' constructor.

Przykłady

Przykład #1 Basic usage of ReflectionClass::getConstructor()

<?php
$class 
= new ReflectionClass('ReflectionClass');
$constructor $class->getConstructor();
var_dump($constructor);
?>

Powyższy przykład wyświetli:

object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(11) "__construct"
  ["class"]=>
  string(15) "ReflectionClass"
}

Zobacz też:


ReflectionClass
PHP Manual