ReflectionClass::newInstance

(PHP 5, PHP 7)

ReflectionClass::newInstanceCreates a new class instance from given arguments

Beschreibung

public ReflectionClass::newInstance ([ mixed $... ] ) : object

Creates a new instance of the class. The given arguments are passed to the class constructor.

Parameter-Liste

...

Accepts a variable number of arguments which are passed to the class constructor, much like call_user_func().

Rückgabewerte

Fehler/Exceptions

A ReflectionException if the class constructor is not public.

A ReflectionException if the class does not have a constructor and the ... parameter contains one or more parameters.

Siehe auch