对比 PHP 中 new static() 与 new self()
Posted wgchen~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对比 PHP 中 new static() 与 new self()相关的知识,希望对你有一定的参考价值。
阅读目录
说明
通过new static()
与new self()
都能产生实例对象,new static()
是在php5.3版本中引入的新特性,本文对二者稍作对比。
一、当直接通过本类创建实例时
class Test
{
public static function getIns()
{
$obj1 = new
以上是关于对比 PHP 中 new static() 与 new self()的主要内容,如果未能解决你的问题,请参考以下文章
对比 PHP 中 new static() 与 new self()
PHP中new static()与new self()的区别异同分析
new self() 与 new static() 用法区别
PHP中new self()和new static()的区别探究