11

在PHP中,我想知道是什么array(&$this)意思。

4

3 回答 3

14

这是一个初始化包含一个元素的数组的构造:对初始化数组的对象的引用。在每个类中,您可以使用$this.

于 2012-04-24T08:07:00.540 回答
6

Its PHPs pass by reference construction. Typically this means that a reference to the parameter is passed to the function instead of a copy of the value, so that modifications inside the function affect the object.

于 2012-04-24T08:05:42.703 回答
0

这是创建一个具有单个元素的数组。元素是对执行它的对象的引用。有关更多信息,请参阅有关通过引用传递的文档。

于 2012-04-24T08:08:57.100 回答