Hello PHPers,
在家自学“Php and my sql web dev 4th edition”的时候,遇到了困难。看到OO php 自己就照葫芦画瓢抄写了书中代码,放在本机的WampServer看效果。结果却是没效果。
希望潜水的php高手们,能指导一下。 谢谢。
<?phpclass classname{ function _construct($param) { echo "Constructor called with parameter ".$param."<br />"; } }$a = new classname("First");$b = new classname("Second");$c = new classname();?>
function __construct($param){
echo "Constructor called with parameter ".$param."
";
}
你的 construct 少一个_