Skip to content

Commit

Permalink
Update and rename 07.特殊的引用”$this“的使用.md to 07.特殊的引用"$this"的使用.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yafangmaster authored Oct 25, 2017
1 parent 9a5b100 commit 45826d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 7.特殊的引用$this的使用
# 7.特殊的引用"$this"的使用
现在我们知道了如何访问对象中的成员,是通过”对象->成员”的方式访问的,这是在对象的外部去访问对象中成员的形式, 那么如果我想在对象的内部,让对象里的方法访问本对象的属性, 或是对象中的方法去调用本对象的其它方法这时我们怎么办?因为对象里面的所有的成员都要用对象来调用,包括对象的内部成员之间的调用,所以在PHP里面给 我提供了一个本对象的引用$this, 每个对象里面都有一个对象的引用$this来代表这个对象,完成对象内部成员的调用, this的本意就是“这个”的意思, 上面的实例里面,我们实例化三个实例对象$P1、 $P2、 $P3,这三个对象里面各自存在一个$this分别代表对象$p1、$p2、$p3 。

![](http://images2015.cnblogs.com/blog/381128/201607/381128-20160717213752170-1088498933.png)
Expand Down

0 comments on commit 45826d4

Please sign in to comment.