作者:牛仔很忙不闲 | 来源:互联网 | 2014-06-17 17:33
__construct构造函数类在被实例化时就会执行construct自定义的函数或方法<?phpclassmyName{function__construct($myName){连续两
__construct 构造函数 类在被实例化时就会执行.construct 自定义的函数或方法.
- class myName{
- function __construct($myName){
- echo ("我的名字是:$myName
");
- }
- }
- $name1 = new myName("小猫");
- $name2 = new myName("小狗");
- $name3 = new myName("小马");
- ?>
与之比较的是:
- class myName{
- function construct($myName){
- echo ("我的名字是:$myName
");
- }
- }
- $name1 = new myName("小猫");
- $name2 = new myName("小狗");
- $name3 = new myName("小马");
- ?>