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

php面向对象(二) $this

时间:2014-08-12 16:30:04      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   cti   div   html   

<!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>

 

php面向对象(二) $this,布布扣,bubuko.com

php面向对象(二) $this

标签:style   blog   color   io   ar   cti   div   html   

原文地址:http://www.cnblogs.com/leinov/p/3907233.html

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