构造方法
//命名空间
namespace admin;
class Demo{
//属性
public $product;
public $price;
//构造方法
function __construct($product,$price)
{
$this->product = $product;
$this->price = $price;
}
//自定义方法
public function getInfo(){
return '品名:'.$this->product.',价格:'.$this->price;
}
}
//实例化
$demo = new Demo('小米手机',3500);
echo $demo -> getInfo();
- 输出效果:
手写: