update : 2015.11.03
php.shukuma.com

검색:
 
 
Creates a new class instance from given arguments.

ReflectionClass::newInstance

(PHP 5)

ReflectionClass::newInstanceCreates a new class instance from given arguments.

설명

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

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

인수

args

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

반환값

오류/예외

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.

참고