php / 8.1.5 / reflectionclass.newinstance.html /

ReflectionClass::newInstance

(PHP 5, PHP 7, PHP 8)

ReflectionClass::newInstanceCreates a new class instance from given arguments

Description

public ReflectionClass::newInstance(mixed ...$args): object

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

Parameters

args

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

Return Values

Errors/Exceptions

A ReflectionException if the class constructor is not public.

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

See Also

© 1997–2021 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectionclass.newinstance.php