class Courier
{
public $name;
public $home_country;
public function __construct($name, $home_country) {
$this->name = $name;
$this->home_country = $home_country;
return true;
}
public function ship($parcel) {
// sends the parcel to its destination
return true;
}
public function calculateShipping($parcel) {
// look up the rate for the destination
$rate = 1.78;
// calculate the cost
$cost = $rate * $parcel->weight;
return $cost;
}
}
งงตรง $this-> ด้วยครับ ตรงนี้งงหนักมาก พยายาม google หา ก็ไม่ค่อยจะมีให้อ่านครับ