function __construct($data){ $this->data = $data;}
不是很理解构造函数中传入一个参数,并且赋值给类的data数组;这里的参数值从哪里来?
实例化一个对象的时候,
例:$obj = new classname($data);