时间:2021-07-01 10:21:17 帮助过:7人阅读
这与是否 private 无关
这是一个变量的作用域的问题
如写作
function __construct($pcName){
$name=$pcName;
}
那么出了 __construct 变量 $name 就不存在了
所以需要
function __construct($pcName){
$this->name=$pcName;
}
告诉 php name 是属性