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

php中static和self调用静态方法区别

时间:2018-04-19 11:55:01      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:php

由于看到框架里面经常使用static::method() 于是稍微了解下static和self的区别

废话少说,直接上代码

class Father
{
	public function __construct()
	{
		$this->init();
		
		self::test();
	}

	public static function test()
	{
		echo "father test....<br>";
	}

	public function init()
	{
		echo 'father init...<br>';
	}
}

class Son extends Father
{
	public function init()
	{
		echo 'son init..<br>';
	}

	public static function test()
	{
		echo "son test..<br>";
	}
}

$son_obj = new Son();


显示结果:

son init..
father test....


分析结果看,调用init非静态方法已经被子类覆盖了,但使用self调用静态方法还是使用的是父类的test静态方法

于是我们将代码修改成static

class Father
{
	public function __construct()
	{
		$this->init();
		
		static::test();
	}

	public static function test()
	{
		echo "father test....<br>";
	}

	public function init()
	{
		echo 'father init...<br>';
	}
}

class Son extends Father
{
	public function init()
	{
		echo 'son init..<br>';
	}

	public static function test()
	{
		echo "son test..<br>";
	}
}

$son_obj = new Son();


出现的结果是:

son init..
son test..


使用static调用静态方法使用了当前分类的静态方法

php中static和self调用静态方法区别

标签:php

原文地址:http://blog.51cto.com/chinalx1/2105281

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