欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中的范围解析符

程序员文章站 2022-03-26 17:29:35
...
* 范围解析符::

* 一、用途

* 1.调用静态成员(类外部)

* 2.调用类常量

* 3.调用被子类覆盖的类成员(属性/方法)

* 二、场景

* 1.类外部:前面仅允许通过类名来访问类中成员

* 2.类内部:前面仅允许: self, parent,static

* 三、特殊: 允许使用类名变量来引用类名(php5.3+)

class Demo1 
{
    const HOME = '合肥';
    public static function test1()
    {
        return __METHOD__;
    }
    public static function test2()
    {
        //延迟静态绑定:后面会说到
        //static::根据上下文来决定使用哪个类来调用
        return static::test1();
    }
}
class Demo2 extends Demo1
{
    public static $name = '朱老师';
    public static function test1()
    {
        //调用本类静态成员: self::
        $res = self::$name.'<br>';
        //调用父类静态成员属性: parent::
        $res .= parent::HOME.'<br>';
        //调用父类静态成员方法
        $res .= parent::test1().'<br>';
        $res .= __METHOD__;
        return $res;
    }
    
}

//1.类外部调用类静态成员

echo Demo1::HOME,'<br>';
echo Demo1::test1();
echo '<hr>';
echo Demo2::test1();
echo '<hr>';

//注意Demo1调用test2()和Demo2调用test2()的区别

//Demo1::test()返回Demo1中的test1()运行结果

echo Demo1::test2();
echo '<hr>';

//Demo2::test2()返回Demo2中的test1()运行结果

echo Demo2::test2();
echo '<hr>';

//php5.3+,允许使用类变量来调用

$class = 'Demo2';
echo $class::test2();

以上就是php中的范围解析符的详细内容,更多请关注其它相关文章!