解决PHP4.0 和 PHP5.0类构造函数的兼容问题
程序员文章站
2023-08-16 08:39:35
在 php5.0 以上版本里,还兼容了 4.0 版本的构造函数的定义规则。如果同时定义了4.0的构造函数和 __construct()函数,则__construct() 函...
在 php5.0 以上版本里,还兼容了 4.0 版本的构造函数的定义规则。如果同时定义了4.0的构造函数和 __construct()函数,则__construct() 函数优先。
为了使类代码同时兼容 php4.0 和 5.0,可以采取以下的方式:
<?php
class myclass {
function __construct() { //for php5.0
echo 'this is class2 construct';
}
// 为了使类代码同时兼容 php4.0 和 5.0
function myclass() { //for php4.0
$this->__construct();
}
}
$c3 = new myclass;
?>
为了使类代码同时兼容 php4.0 和 5.0,可以采取以下的方式:
复制代码 代码如下:
<?php
class myclass {
function __construct() { //for php5.0
echo 'this is class2 construct';
}
// 为了使类代码同时兼容 php4.0 和 5.0
function myclass() { //for php4.0
$this->__construct();
}
}
$c3 = new myclass;
?>
上一篇: 1岁半宝宝营养食谱你会做吗
下一篇: 鲢鱼怎么做好吃?你都知道吗?
推荐阅读
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析
-
解决PHP4.0 和 PHP5.0类构造函数的兼容问题
-
类的使用(类和对象,构造函数和析构函数)
-
类String的构造函数、析构函数、拷贝构造函数和赋值函数
-
类string的构造函数、拷贝构造函数和析构函数
-
在C++中子类继承和调用父类的构造函数方法
-
派生类Student的构造函数和析构函数 代码参考
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
解决PHP4.0 和 PHP5.0类构造函数的兼容问题_PHP
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析