标签: php
我知道它在其他情况下创建了一个引用。但是这里发生了什么?
$crawler = &new MyCrawler();
答案 0 :(得分:7)
它创建一个MyCrawler实例,并将该实例的引用传递给$ crawler。在PHP5中,假设不推荐使用&。
&
请参阅Object References (the Ampersand)。
答案 1 :(得分:6)
根据PHP documentation