PHP中new static()与new self()的区别异同分析

 2025-01-16  阅读 369  评论 8  点赞 170

摘要:本文实例讲述了php中new static()与new self()的区别异同,相信对于大家学习php程序设计能够带来一定的帮助。 问题的起因是本地搭建一个站。发现用php 5.2 搭建不起来,站php代码里面有很多5.3以上的部分,要求更改在5.2下能运行。 改着改着发现了一个地方 return new static

本文实例讲述了php中new static()与new self()的区别异同,相信对于大家学习php程序设计能够带来一定的帮助。

PHP中new static()与new self()的区别异同分析

问题的起因是本地搭建一个站。发现用php 5.2 搭建不起来,站php代码里面有很多5.3以上的部分,要求更改在5.2下能运行。

改着改着发现了一个地方


return new static($val);

这尼玛是神马,只见过


return new self($val);

于是上网查了下,他们两个的区别。

self - 就是这个类,是代码段里面的这个类。

static - php 5.3加进来的只得是当前这个类,有点像$this的意思,从堆内存中提取出来,访问的是当前实例化的那个类,那么 static 代表的就是那个类。

还是看看老外的专业解释吧:

self refers to the same class whose method the new operation takes place in.

static in php 5.3's late static bindings refers to whatever class in the hierarchy which you call the method on.

in the following example, b inherits both methods from a. self is bound to a because it's defined in a's implementation of the first method, whereas static is bound to the called class (also see  get_called_class() ).


class a {
  public static function get_self() {
    return new self();
  }

  public static function get_static() {
    return new static();
  }
}

class b extends a {}

echo get_class(b::get_self()); // a
echo get_class(b::get_static()); // b
echo get_class(a::get_static()); // a

这个例子基本上一看就懂了吧。

原理了解了,但是问题还没有解决,如何解决掉 return new static($val); 这个问题呢?

其实也简单就是用 get_class($this); 代码如下:


class a {
  public function create1() {
    $class = get_class($this);
    return new $class();
  }
  public function create2() {
    return new static();
  }
}

class b extends a {

}

$b = new b();
var_dump(get_class($b->create1()), get_class($b->create2()));

/*
the result 
string(1) "b"
string(1) "b"
*/

感兴趣的朋友可以动手测试一下示例代码,相信会有新的收获!


标签:phpphp教程

评论列表:

显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0277秒, 内存占用1.94 MB, 访问数据库31次

冀ICP备19034377号