Correcting teacher:查无此人
Correction status:qualified
Teacher's comments:完成的不错,继续加油。
`<?php
namespace admin;
class Demo {
public $product;
public $price;
public function __construct($product,$price)
{
$this->product = $product;
$this->price =$price;
}
// 对象方法
public function getInfo(){
return '品名: ' .$this->product .', 价格: ' . $this->price . '<br>';
}
// 析构方法: 在对象被删除/清理时自动调用
public function __destruct()
{
echo '<h3 style="color:red">对象已被清理</h3>';
}
}
$obj = new Demo(‘pc’,’2800’);
echo $obj-> getInfo();
// unset ($obj);
// $obj=null;
`
学习了类的知识,对类有了一定的了解,希望能有案例进行深入了解一下。