__construct和与类同名的函数有什么区别?
2022-08-30 21:39:54
可能的重复:
__construct的功能是什么?
__construct函数和与类同名的函数之间有什么区别吗?
class foo {
function foo ($something){
echo "I see ".$something." argument";
}
}
class bar {
function __construct ($something){
echo "<br />
I see ".$something." argument again";
}
}
$foo = new foo("foo");
$bar = new bar("bar");