解决PHP4.0 和 PHP5.0类构造函数的兼容问题
程序员文章站
2024-02-09 21:32:46
在 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;
?>
上一篇: 163邮箱申诉怎么查询申诉结果?
下一篇: 微信小程序云开发 生成带参小程序码流程
推荐阅读
-
解决PHP4.0 和 PHP5.0类构造函数的兼容问题
-
解决PHP4.0 和 PHP5.0类构造函数的兼容问题_PHP教程
-
基类和派生类的构造函数
-
解决PHP4.0 和 PHP5.0类构造函数的兼容问题
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析,thinkphp构造函数
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析
-
解决PHP4.0 和 PHP5.0类构造函数的兼容问题
-
类的使用(类和对象,构造函数和析构函数)
-
类String的构造函数、析构函数、拷贝构造函数和赋值函数