downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionClass::getDefaultProperties> <ReflectionClass::getConstants
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionClass::getConstructor

(PHP 5)

ReflectionClass::getConstructorGets the constructor of the class

Descrierea

public ReflectionMethod ReflectionClass::getConstructor ( void )

Gets the constructor of the reflected class.

Parametri

Această funcție nu are parametri.

Valorile întoarse

A ReflectionMethod object reflecting the class' constructor, or NULL if the class has no constructor.

Exemple

Example #1 Basic usage of ReflectionClass::getConstructor()

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

Exemplul de mai sus va afișa:

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

Vedeți de asemenea



add a note add a note User Contributed Notes ReflectionClass::getConstructor - [2 notes]