Example #1
0
 public function move($id, $from, $target)
 {
     $oss = new AliyunOss($this->category, '', $id);
     if ($oss->exsits($from)) {
         $oss->move($from, $target);
     }
     return true;
 }