php 种 构造方法
程序员文章站
2024-02-09 12:51:46
...
php 类 构造方法
php 类的构造方法传递数组,取出来是NULL。为什么???
class Excel{
var $re;
function __construct($re){
$this->exc=$re;
}
function get(){
return $this->re;
}
}
?>
============
require_once("./b.php");
$tem=array(1,4,7,8);
$t = new Excel($tem);
$ff=$t->get();
var_dump($ff);======================NULL
?>
------解决方案--------------------
class Excel{
var $re;
function __construct($re){
$this->exc=$re;
}
function get(){
return $this->re;
}
}
属性名都不对应,如何能得到正确结果?
------解决方案--------------------
构造函数内 你都没给 属性 re 赋值
$this->exc=$re;
改成
$this->re=$re;
------解决方案--------------------
属性名不一致,$this->re与$this->exc
它俩统一一下
LZ大意了
php 类的构造方法传递数组,取出来是NULL。为什么???
class Excel{
var $re;
function __construct($re){
$this->exc=$re;
}
function get(){
return $this->re;
}
}
?>
============
require_once("./b.php");
$tem=array(1,4,7,8);
$t = new Excel($tem);
$ff=$t->get();
var_dump($ff);======================NULL
?>
------解决方案--------------------
class Excel{
var $re;
function __construct($re){
$this->exc=$re;
}
function get(){
return $this->re;
}
}
属性名都不对应,如何能得到正确结果?
------解决方案--------------------
构造函数内 你都没给 属性 re 赋值
$this->exc=$re;
改成
$this->re=$re;
------解决方案--------------------
属性名不一致,$this->re与$this->exc
它俩统一一下
LZ大意了
相关文章
相关视频
上一篇: 信息安全选择题(1) 博客分类: 大学计算机应用基础
下一篇: PHP加密解密函数收藏