中间少了部分视频,在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
根据参数的个数以及值去判断实际的处理方法是不严谨的,我倒是觉得写这节有点多余,弄巧成拙,而且视频的剪切还成在跳跃的部分,体验不好!
2016-01-26