中间少了部分视频,在Mem构造那一块,
class Mem
{
//.....
public function __construct(){
if(!class_exists($this->type)){
$this->error="No ".$this->type;
return false;
}else{
$this->m=new $this->type;
}
}
}
没有 的同学自己加上!!!
class Mem
{
//.....
public function __construct(){
if(!class_exists($this->type)){
$this->error="No ".$this->type;
return false;
}else{
$this->m=new $this->type;
}
}
}
没有 的同学自己加上!!!
2016-02-21