在PHP中,我想知道是什么array(&$this)
意思。
问问题
11869 次
3 回答
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 回答