php面向对象(二) $this

时间:2022-11-29 22:32:57
<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>this</title>
</head>
<body>
    <?php
    //对象一旦被创建 对象中的每个成员方法里面都会存在一个特殊的对象引用"$this" 成员方法属于哪个对象 $this引用就代表哪个对象 专门用来完成对象内部成员之间的访问

    class Person{
        var $name;
        var $address;
        function say(){
            //$this 是存在于对象方法中的一个引用 这个$this引用就是代表Person对象
            return $this->names;//$this 可以访问这个对象中的属性
        }
        function go(){
            return $this->to();//$this 也可以访问这个对象中的方法
        }
        function to(){
            return $this->address;
        }
    }

    $person1=new Person;//实例化对象之后 这时每个对象方法里面都有一个this引用 指向对象本身
    $person1->names="umderstand this";
    $person1->address="beijing";
    echo $person1->say()."<br>"; //umderstand this
    echo $person1->go();         // beijing

    ?>
</body>
</html>