name."'s eating".$food;
}
}
class NbaPlayer extends Human{
public $team="bull";
public $playerNumber="23";
function __construct($name,$height,$weight,$team,$playerNumber){
echo "构造函数调用成功";
}
}
$jordan=new NbaPlayer("jordan","198cm","98kg","bull","23");
echo $jordan->name."\n";
$jordan->ect("Apple");Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
为什么我name输不出来,求指教?-PHP中文网问答-为什么我name输不出来,求指教?-PHP中文网问答
围观一下哦,学习一下。
因为你的构造函数什么都没做,只是输出了"构造函数调用成功" ,你只是定义了 name 属性,你在构造函数中加上一句