新手注意php类中的构造函数construct的前下划线"_"是双的,也就是二个
不要写错了,写错了构造函数就不起作用了.
例:
以下为引用的内容:<?phpclass test{ function __construct(){ echo "hello world"; } }
$test = new test;?>