请问下面这个程序的结果是啥呀~~~
class Coupon
{
public string $type;
public float $money;
public function __construct(string $type, float $money)
{
$this->type = $type;
$this->money = $money;
}
public function happy()
{
echo "恭喜你!领取".$this->money."元".$this->type."券!!";
}
}
(new Coupon('美团', 30))->happy();
申请了个公众号,可以外卖领券,求关注~~