class Animal
{
var $name;
function __Construct($names){
$this->name=$names;
}
}
class Dog extends Animal
{
function prop($ht, $wt, $ja)
{
$height=$ht;
$weight=$wt;
$jaw=$ja;
}
}
$dog= new dog('Pug');
$dog->prop(70, 50, 60);
我想呼應從dog
只有一個特定的值內聲明的函數只能訪問一個特定的值功能prop
。
像dog->prop->jaw;
這是如何完成的?
通常,'__construct'方法名是所有小寫 – Phil