php 中 self 和 static 的区别

Posted pandaLIU

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 中 self 和 static 的区别相关的知识,希望对你有一定的参考价值。

php 中 self 和 static 的区别


class Foo
{
    public static $str = 'This is foo';

    public static function show()
    {
        echo __METHOD__ . PHP_EOL;
        echo static::$str;
    }
}

class Boo extends Foo
{
    public static $str = 'This is boo';
}

Boo::show();

# 输出结果
# Foo::show
# This is boo

使用 static 调用的是当前类的变量

class Foo
{
    public static $str = 'This is foo';

    public static function show()
    {
        echo __METHOD__ . PHP_EOL;
        echo self::$str;
    }
}

class Boo extends Foo
{
    public static $str = 'This is boo';
}

Boo::show();

# 输出结果
# Foo::show
# This is foo

使用 self 调用的是最高级的父类的变量

以上是关于php 中 self 和 static 的区别的主要内容,如果未能解决你的问题,请参考以下文章

php 中 self 和 static 的区别

PHP static 和 self的区别

PHP $this,self,static 的区别

php中static self区别与总结

PHP 中的 self::$bar 和 static::$bar 有啥区别?

php static 和self区别