|
为了使类代码同时兼容 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;
?>
php技术:解决PHP4.0 和 PHP5.0类构造函数的兼容问题,转载需保留来源!
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。