Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在许多网站上看到了实例化对象的示例。
$obj = new foo;
这是直截了当的,但我也看到了这个:
$obj = new foo();
有区别吗?到目前为止,我注意到两者都做同样的事情。
没有区别,这是一个见仁见智的问题。如果foo有一个带参数的构造函数,你需要使用new foo($param);
foo
new foo($param);