Php/docs/reflectionclass.newinstancewithoutconstructor

来自菜鸟教程
跳转至:导航、​搜索

ReflectionClass::newInstanceWithoutConstructor

(PHP 5 >= 5.4.0, PHP 7)

ReflectionClass::newInstanceWithoutConstructor创建一个新的类实例而不调用它的构造函数


说明

public ReflectionClass::newInstanceWithoutConstructor ( ) : object

创建一个新的类的实例而不调用它的构造函数。


参数

返回值

更新日志

版本 说明
5.6.0 All internal classes can now be instantiated except for those declared

final.


错误/异常

如果这个类是一个不能不调用构造函数来实例化的内置类,将导致一个 ReflectionException。在 PHP 5.6.0 及更高版本中,此异常仅限于 final 的内置类。


参见