码迷,mamicode.com
首页 > Web开发 > 详细

PHP new self()和new static()的区别

时间:2017-08-14 22:27:00      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:php

new static()是php5.3以后引入新的特性,延迟静态绑定.访问的是当前实例化的那个类,那么 static 代表的就是那个类。

new self() 是指的不是调用上下文,它指的是解析上下文.

class  Test {

    public static funtion getSelf(){

            return new self();

     }

    

    public static funtion getStatic(){

            return new static();

     }

  }

class  Test1 extends Test {


  }

echo get_class(Test1 ::getSelf);  输出:Test 

echo get_class(Test1 ::getStatic);输出:Test1 

echo get_class(Test ::getStatic);输出:Test 

PHP new self()和new static()的区别

标签:php

原文地址:http://13169797.blog.51cto.com/13159797/1956108

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!