thinkphp how to receive a picture of the iOS post coming back

Source: Internet
Author: User
$upload = new \Think\Upload();// 实例化上传类             $upload->maxSize   =     3145728 ;// 设置附件上传大小         $upload->exts      =     array('jpg', 'gif', 'png', 'jpeg');//          $upload->savePath  =      '/Public/Uploads/images/';         $info   =   $upload->upload();         if(!$info) {// 上传错误提示错误信息             $this->error($upload->getError());         }         这种方法接收不到呢? 是哪里问题呢!求大牛告知

Reply content:

$upload = new \Think\Upload();// 实例化上传类             $upload->maxSize   =     3145728 ;// 设置附件上传大小         $upload->exts      =     array('jpg', 'gif', 'png', 'jpeg');//          $upload->savePath  =      '/Public/Uploads/images/';         $info   =   $upload->upload();         if(!$info) {// 上传错误提示错误信息             $this->error($upload->getError());         }         这种方法接收不到呢? 是哪里问题呢!求大牛告知


  
    0)    {    echo "Return Code: " . $_FILES["file"]["error"] . "
"; } else { echo "Upload: " . $_FILES["file"]["name"] . "
"; echo "Type: " . $_FILES["file"]["type"] . "
"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb
"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "
"; if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } }else { echo "Invalid file"; }?>
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.