温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2020-08-16 02:02:28 来源:网络 阅读:7564 作者:china_lx1 栏目:开发技术

由于看到框架里面经常使用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调用静态方法使用了当前分类的静态方法

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI