求助多图上传接口

浏览:1247 发布日期:2015/11/12 分类:求助交流 关键字: 上传 多图 接口
public function uploading(){
        $id=I('uid');
        $tid=I('tid');
        $title=I('title');
      $upload = new \Think\Upload();
        //上传图片不能超过3M
      $upload->maxSize = 3145728;
      // 设置附件上传类型
      $upload->exts = array('jpg', 'png', 'jpeg');
      $upload->saveName = array('uniqid','');
      $upload->saveExt = 'jpg';
      $upload->rootPath = "./Upload/";
      $upload->savePath  = 'images/'; // 设置附件上传(子)目录

      $info=$upload->upload();
        // $this->error($upload->getError());
      if(!$info){
        $array['code']=0;
        $array['message']=$upload->getError();
           $this->ajaxReturn ($array,'JSON');
        exit();
      }else{
 
        foreach ($info as $value) {          
               $arr[]='/Upload'.'/'.$value['savepath'].$value['savename'];
        
       }
        $print['photo']=implode(';',$arr);
        // $array['photo'] = $print['photo'];

        $print['tid']=$tid;
        $print['uid']=$id;
        $print['title']=$title;
        $testaper=M('testaper')->add($print);
    }
这个接口问题是这样的, 如果是html来使用此接口,是可以拿到多图路径并且上传成功,但是如果是手机端来使用这个接口,最多只能上传两张,我不知道这是为什么
最佳答案
评论( 相关
后面还有条评论,点击查看>>