> 백엔드 개발 > PHP 튜토리얼 > AIP 이미지 업로드 인터페이스에 대한 PHP

AIP 이미지 업로드 인터페이스에 대한 PHP

小云云
풀어 주다: 2023-03-21 08:00:01
원래의
4195명이 탐색했습니다.

PHP 업로드의 간단한 사례:

Html 파일:


<html><form action="index.php" name="form" method="post" enctype="multipart/form-data">
    <input type="file" name="file" />
    <input type="submit" name="submit" value="上传" /></form></html>
로그인 후 복사

스타일 관련:

휴대폰에서 업로드 버튼을 클릭하면 카메라가 나타납니다:

  

<input type="file" accept="image/*;capture=camera">直接调用相机
            <input type="file" accept="image/*" />调用相机 图片或者相册
로그인 후 복사

PHP 파일:

<?php$file = $_FILES[&#39;file&#39;];//得到传输的数据

//得到文件名称$name = $file[&#39;name&#39;];$type = strtolower(substr($name,strrpos($name,&#39;.&#39;)+1)); //得到文件类型,并且都转化成小写$allow_type = array(&#39;jpg&#39;,&#39;jpeg&#39;,&#39;gif&#39;,&#39;png&#39;); //定义允许上传的类型
//判断文件类型是否被允许上传if(!in_array($type, $allow_type)){    //如果不被允许,则直接停止程序运行
    return ;
}//判断是否是通过HTTP POST上传的if(!is_uploaded_file($file[&#39;tmp_name&#39;])){    //如果不是通过HTTP POST上传的
    return ;
}$upload_path = "./img/"; //上传文件的存放路径
//开始移动文件到相应的文件夹if(move_uploaded_file($file[&#39;tmp_name&#39;],$upload_path.$file[&#39;name&#39;])){    echo "Successfully!";
}else{    echo "Failed!";
}?>
로그인 후 복사

thinkphp 업로드 클래스를 사용한 간단한 업로드 사례:

    
      = &#39;maxSize&#39;    =>    3145728,         
        &#39;exts&#39;       =>    (&#39;jpg&#39;, &#39;gif&#39;, &#39;png&#39;, &#39;jpeg&#39;),
        &#39;rootPath&#39;   =>    &#39;./Public/Uploads/info/&#39;,
        &#39;savePath&#39;   =>    &#39;&#39;,                          
        &#39;saveName&#39;   =>    (&#39;uniqid&#39;,&#39;&#39;),
        &#39;autoSub&#39;    =>    ,                       
        &#39;subName&#39;    =>    (&#39;date&#39;,&#39;Ymd&#39;),  upload([&#39;result&#39;] = 1[&#39;imgurl&#39;] = &#39;&#39;[&#39;msg&#39;] = &#39;&#39; =  = ->upconfig[&#39;rootPath&#39;] . ->upconfig[&#39;savePath&#39;(!( = (, 0777, (!
                [&#39;result&#39;] = 0[&#39;msg&#39;] = "创建保存图片的路径失败!"
             =  \Think\Upload(->
로그인 후 복사
(!
                [&#39;result&#39;] = 0[&#39;msg&#39;] = ->
                 =  ->upconfig[&#39;rootPath&#39;] . [&#39;savepath&#39;].[&#39;savename&#39; = (&#39;./&#39;, &#39;/&#39;, [&#39;result&#39;] = 1[&#39;imgurl&#39;] = (0 
         = ->upload([&#39;attorney&#39;]);
로그인 후 복사

모바일 앱 업로드 이미지 예: API 인터페이스:

질문: APP 업로드 아바타, 어떻게? API 끝인 PHP는 그림 정보를 받아야 합니까?

코드 업로드 부분은 문제가 되지 않습니다. 가장 큰 문제는 서버 측이 APP 측에서 이미지 정보를 어떻게 받을 수 있느냐는 것입니다. B/S 아키텍처에서는 양식 양식을 통해 직접 enctype="multipart/form-data"를 설정할 수 있으며 이미지 정보는 $_FILES 배열에 있습니다. 그렇다면 C/S 모드에서도 마찬가지인가요?

답변 1(방법 1 참조): 일반적으로 바이너리 스트리밍이 사용됩니다. 클라이언트가 바이너리를 전송하고, 서버가 이를 수신한 다음 file_put_contents가 파일에 기록됩니다. 파일 이름 형식과 파일을 저장할 위치는 모두 사용자가 정의합니다.

답변 2(방법 2 참조): Android 또는 IOS 클라이언트는 서버에 대한 HTTP Post 요청을 시뮬레이션한 후($_FILES를 통해 이미지 리소스 획득) 응답 정보를 서버에 반환합니다. 고객. (이 방법은 HTML 제출 방법과 동일합니다.)

방법 1: 전송을 위해 이미지를 base64로 문자열로 암호화합니다

지침: IOS 또는 Android: 이미지를 base64 인코딩하여 가져옵니다. 문자열은 다음과 같습니다. 인터페이스에 전달됨

인터페이스 끝: 수신된 문자열을 Base64로 디코딩한 후 file_put_contents 함수를 통해 지정된 위치에 업로드합니다

    /**
     * 图片上传
     * @param $imginfo - 图片的资源,数组类型。[&#39;图片类型&#39;,&#39;图片大小&#39;,&#39;图片进行base64加密后的字符串&#39;]
     * @param $companyid - 公司id
     * @return mixed     */
    public function uploadImage( $imginfo , $companyid ) {        $image_type = strip_tags($imginfo[0]);  //图片类型
        $image_size = intval($imginfo[1]);  //图片大小
        $image_base64_content = strip_tags($imginfo[2]); //图片进行base64编码后的字符串

        $upload = new UploaderService();        $upconfig = $upload->upconfig;        if(($image_size > $upconfig[&#39;maxSize&#39;]) || ($image_size == 0)) {            $array[&#39;status&#39;] = 13;            $array[&#39;comment&#39;] = "图片大小不符合要求!";            return $array;
        }        if(!in_array($image_type,$upconfig[&#39;exts&#39;])) {            $array[&#39;status&#39;] = 14;            $array[&#39;comment&#39;] = "图片格式不符合要求!";            return $array;
        }        // 设置附件上传子目录
        $savePath = &#39;bus/group/&#39; . $companyid . &#39;/&#39;;        $upload->upconfig[&#39;savePath&#39;] = $savePath;        //图片保存的名称
        $new_imgname = uniqid().mt_rand(100,999).&#39;.&#39;.$image_type;        //base64解码后的图片字符串
        $string_image_content = base64_decode($image_base64_content);        // 保存上传的文件
        $array = $upload->upload($string_image_content,$new_imgname);        return $array;
    }
로그인 후 복사
    // 上传配置信息
    public $upconfig = array(        &#39;maxSize&#39;    =>    3145728,         //3145728B(字节) = 3M
        &#39;exts&#39;       =>    array(&#39;jpg&#39;, &#39;gif&#39;, &#39;png&#39;, &#39;jpeg&#39;),//        &#39;rootPath&#39;   =>    &#39;./Public/Uploads/info/&#39;,
        &#39;rootPath&#39;   =>    &#39;https://www.eyuebus.com/Public/Uploads/info/&#39;,
    );    /**
     * @param $string_image_content - 所要上传图片的字符串资源
     * @param $new_imgname - 图片的名称,如:57c14e197e2d1744.jpg
     * @return mixed     */
    public function upload($string_image_content,$new_imgname) {        $res[&#39;result&#39;] = 1;        $res[&#39;imgurl&#39;] = &#39;&#39;;        $res[&#39;comment&#39;] = &#39;&#39;;        do {            $ret = true;            $fullPath = $this->upconfig[&#39;rootPath&#39;] . $this->upconfig[&#39;savePath&#39;];            if(!file_exists($fullPath)){                $ret = mkdir($fullPath, 0777, true);
            }            if(!$ret) {                // 上传错误提示错误信息
                $res[&#39;result&#39;] = 12;                $res[&#39;comment&#39;] = "创建保存图片的路径失败!";                return $res;                break;
            }            //开始上传
            if (file_put_contents($fullPath.$new_imgname, $string_image_content)){                // 上传成功 获取上传文件信息
                $res[&#39;result&#39;] = 0;                $res[&#39;comment&#39;] = "上传成功!";                $res[&#39;imgname&#39;] = $new_imgname;
            }else {                // 上传错误提示错误信息
                $res[&#39;result&#39;] = 11;                $res[&#39;comment&#39;] = "上传失败!";
            }


        } while(0);        return $res;
    }
로그인 후 복사

方式二:Android或者IOS客户端模拟一个HTTP的Post请求到服务器端,服务器端接收相应的Post请求后(通过$_FILES获取图片资源),返回响应信息给给客户端。(这一种方式和获取Html方式提交的方法一样)

移动端需要请求一个URL,这个URL接收POST过去的数据,比如:http://www.apixxx.net/Home/Uploader/uploadPrepare

    public function uploadPrepare() {        $array = array();        $post_log = print_r($_POST, true);        Log::record($post_log, &#39;DEBUG&#39;);        $file_log = print_r($_FILES, true);        Log::record($file_log, &#39;DEBUG&#39;);        $token = $_POST[&#39;token&#39;];        $token_str          = jwt_decode($token);$user_type          = $token_str[&#39;user_type&#39;];

        // 设置附件上传子目录
        if($user_type == 1) {            $savePath = &#39;travel/group/&#39; . $user_companyid . &#39;/&#39;;
        }elseif ($user_type == 2) {            $savePath = &#39;bus/group/&#39; . $user_companyid . &#39;/&#39;;
        }elseif ($user_type == 3) {            $savePath = &#39;driver/group/&#39; . $user_companyid . &#39;/&#39;;
        }else {            $array[&#39;status&#39;] = 3;            $array[&#39;comment&#39;] = &#39;非法用户!&#39;;            return $array;
        }        $this->upconfig[&#39;savePath&#39;] = $savePath;        // 保存上传的文件(单张)
//        $res = $this->upload($_FILES[&#39;file&#39;]);

    
        // 保存上传的文件(多张) 移动端的表单name=“xxx[]”,支持多张图片
        $res = $this->upload();        $array[&#39;status&#39;] = $res[&#39;status&#39;];        $array[&#39;comment&#39;] = $res[&#39;comment&#39;];        $array[&#39;responseParameters&#39;][&#39;img_url&#39;] = $res[&#39;img_url&#39;];        echo json_encode($array);
    }    protected function upload() {        $res[&#39;status&#39;] = 1;        $res[&#39;imgurl&#39;] = &#39;&#39;;        $res[&#39;comment&#39;] = &#39;&#39;;        do {            $ret = true;            $fullPath = $this->upconfig[&#39;rootPath&#39;] . $this->upconfig[&#39;savePath&#39;];            if(!file_exists($fullPath)){                $ret = mkdir($fullPath, 0777, true);
            }            if(!$ret) {                // 上传错误提示错误信息
                $res[&#39;status&#39;] = 1;                $res[&#39;comment&#39;] = "创建保存图片的路径失败!";                break;
            }            // 实例化上传类
            $upload = new \Think\Upload($this->upconfig);//            // 上传单个文件
//            $info = $upload->uploadOne($file);

            // 上传多个文件
            $infos = $upload->upload();            // 上传的图片数量
            $file_count = 0;            foreach ($_FILES as $file_k => $file_v) {                foreach ($file_v["size"] as $k => $v) {                    if($v == 0) {                        continue;
                    }                    $file_count += 1;
                }
            }            Log::record("info_log", &#39;DEBUG&#39;);            $info_log = print_r($infos,true);            Log::record($info_log, &#39;DEBUG&#39;);            if(!$infos) {                // 上传错误提示错误信息
                $res[&#39;status&#39;] = 2;                $res[&#39;comment&#39;] = $upload->getError();
            } else {                // 获取的上传成功的图片数量
                $info_count = 0;                // 上传成功 获取上传文件信息
                foreach($infos as $k => $v) {                    $imgurl[$v[&#39;key&#39;]][] =  str_replace(&#39;./&#39;, &#39;/&#39;, $this->upconfig[&#39;rootPath&#39;] . $v[&#39;savepath&#39;].$v[&#39;savename&#39;]);                    $info_count += 1;
                }                if($file_count != $info_count) {                    $res[&#39;status&#39;] = 1;                    $res[&#39;comment&#39;] = "上传失败!上传的多张图片,没有全部上传成功";
                }else {                    $res[&#39;status&#39;] = 0;                    $res[&#39;comment&#39;] = "上传成功!";                    $res[&#39;img_url&#39;] = $imgurl;
                }
            }

        } while(0);        return $res;
    }
로그인 후 복사

相关推荐:

相关推荐:

php 图片上传

图片和传真查看器 PHP 图片上传代码

PHP 图片上传代码_PHP教程

위 내용은 AIP 이미지 업로드 인터페이스에 대한 PHP의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿