久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

thinkPHP5框架整合plupload實(shí)現(xiàn)圖片批量上傳功能的方法

這篇文章主要介紹了thinkPHP5框架整合plupload實(shí)現(xiàn)圖片批量上傳功能的方法,結(jié)合實(shí)例形式分析了thinkPHP結(jié)合pluploadQueue實(shí)現(xiàn)上傳功能的相關(guān)操作技巧,需要的朋友可以參考下

本文實(shí)例講述了thinkPHP5框架整合plupload實(shí)現(xiàn)圖片批量上傳功能的方法。分享給大家供大家參考,具體如下:

在官網(wǎng)下載plupload http://http//www.plupload.com

或者點(diǎn)擊此處本站下載。

這里我們使用的是pluploadQueue

在HTML頁面引入相應(yīng)的css和js,然后根據(jù)示例代碼修改為自己的代碼

<link rel="stylesheet" href="/assets/plupupload/css/jquery.plupload.queue.css" rel="external nofollow" type="text/css" media="screen" />
<div class="form-box-header"><h3>{:lang('photo')}</h3></div>
<div class="t-d-in-editor">
  <div class="t-d-in-box">
    <div id="uploader">
      <p>{:lang('plupupload_tip')}</p>
    </div>
    <div id="uploaded"></div>
  </div>
</div>
<script type="text/javascript" src="/assets/plupupload/plupload.full.min.js"></script>
<script type="text/javascript" src="/assets/plupupload/jquery.plupload.queue.js"></script>
<script type="text/javascript">
$(function() {
// Setup html5 version
$("#uploader").pluploadQueue({
// General settings
runtimes : 'html5,flash,silverlight,html4',
url : '{:url("photo/upphoto")}',
chunk_size: '1mb',
rename : true,
dragdrop: true,
filters : {
// Maximum file size
max_file_size : '10mb',
// Specify what files to browse for
mime_types: [
{title : "Image files", extensions : "jpg,gif,png"}
]
},
// Resize images on clientside if we can
resize : {width : 320, height : 240, quality : 90},
flash_swf_url : '/assets/plupupload/Moxie.swf',
silverlight_xap_url : '/assets/plupupload/Moxie.xap',
        init: {
            PostInit: function() {
              $('#uploaded').html("");
            },
            FileUploaded : function(uploader , files, result) {
              up_image = result.response;
              if(up_image != ""){
                $("#uploaded").append("<input type='hidden' name='images[]' value='"+up_image+"'/>"); //這里獲取到上傳結(jié)果
              }
            }
        }
});
});
</script>

plupload整合:

<?php
/* 
 * 文件上傳
 * 
 * Donald
 * 2017-3-21
 */
namespace app\backend\logic;
use think\Model;
class Plupupload extends Model{
  public function upload_pic($file_type="data"){
    #!! IMPORTANT: 
    #!! this file is just an example, it doesn't incorporate any security checks and 
    #!! is not recommended to be used in production environment as it is. Be sure to 
    #!! revise it and customize to your needs.
    // Make sure file is not cached (as it happens for example on iOS devices)
    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
    header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
    header("Cache-Control: no-store, no-cache, must-revalidate");
    header("Cache-Control: post-check=0, pre-check=0", false);
    header("Pragma: no-cache");
    /* 
    // Support CORS
    header("Access-Control-Allow-Origin: *");
    // other CORS headers if any...
    if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
        exit; // finish preflight CORS requests here
    }
    */
    // 5 minutes execution time
    @set_time_limit(5 * 60);
    // Uncomment this one to fake upload time
    // usleep(5000);
    // Settings
    //重新設(shè)置上傳路徑
    $uploads = config('uploads_dir');
    if(!empty($file_type)){
      $uploads = $uploads .$file_type."/".date("Ymd");
    }
    $targetDir = $uploads;
    //$targetDir = 'uploads';
    $cleanupTargetDir = true; // Remove old files
    $maxFileAge = 5 * 3600; // Temp file age in seconds
    // Create target dir
    if (!file_exists($targetDir)) {
        @mkdir($targetDir);
    }
    // Get a file name
    if (isset($_REQUEST["name"])) {
        $fileName = $_REQUEST["name"];
    } elseif (!empty($_FILES)) {
        $fileName = $_FILES["file"]["name"];
    } else {
        $fileName = uniqid("file_");
    }
    //重命名文件
    $fileName_arr = explode(".", $fileName);
    $fileName = myrule().".".$fileName_arr[1]; //rule()請查看上篇我的上篇博客thinkphp同時(shí)上傳多張圖片文件重名問題
    $filePath = $targetDir . DIRECTORY_SEPARATOR . $fileName;
    // Chunking might be enabled
    $chunk = isset($_REQUEST["chunk"]) ? intval($_REQUEST["chunk"]) : 0;
    $chunks = isset($_REQUEST["chunks"]) ? intval($_REQUEST["chunks"]) : 0;
    // Remove old temp files 
    if ($cleanupTargetDir) {
        if (!is_dir($targetDir) || !$dir = opendir($targetDir)) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 100, "message": "Failed to open temp directory."}, "id" : "id"}');
        }
        while (($file = readdir($dir)) !== false) {
            $tmpfilePath = $targetDir . DIRECTORY_SEPARATOR . $file;
            // If temp file is current file proceed to the next
            if ($tmpfilePath == "{$filePath}.part") {
                continue;
            }
            // Remove temp file if it is older than the max age and is not the current file
            if (preg_match('/\.part$/', $file) && (filemtime($tmpfilePath) < time() - $maxFileAge)) {
                @unlink($tmpfilePath);
            }
        }
        closedir($dir);
    } 
    // Open temp file
    if (!$out = @fopen("{$filePath}.part", $chunks ? "ab" : "wb")) {
        die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
    }
    if (!empty($_FILES)) {
        if ($_FILES["file"]["error"] || !is_uploaded_file($_FILES["file"]["tmp_name"])) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Failed to move uploaded file."}, "id" : "id"}');
        }
        // Read binary input stream and append it to temp file
        if (!$in = @fopen($_FILES["file"]["tmp_name"], "rb")) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
        }
    } else { 
        if (!$in = @fopen("php://input", "rb")) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
        }
    }
    while ($buff = fread($in, 4096)) {
        fwrite($out, $buff);
    }
    @fclose($out);
    @fclose($in);
    // Check if file has been uploaded
    if (!$chunks || $chunk == $chunks - 1) {
        // Strip the temp .part suffix off 
        rename("{$filePath}.part", $filePath);
    }
    // Return Success JSON-RPC response
    die($filePath); //這里直接返回結(jié)果
    // die('{"jsonrpc" : "2.0", "result" : "'.$filePath.'", "id" : "id"}');
  }
}

【網(wǎng)站聲明】本站除付費(fèi)源碼經(jīng)過測試外,其他素材未做測試,不保證完整性,網(wǎng)站上部分源碼僅限學(xué)習(xí)交流,請勿用于商業(yè)用途。如損害你的權(quán)益請聯(lián)系客服QQ:2655101040 給予處理,謝謝支持。

相關(guān)文檔推薦

1、PbootCMS后臺正常使用,ueditor編輯界面可以顯示, 但單圖片上傳按鈕點(diǎn)擊沒反應(yīng),多圖片上傳顯示后臺配置項(xiàng)返回格式出錯(cuò),上傳功能將不能正常使用! 2、打開瀏覽器調(diào)試模式,顯示
下面小編就為大家分享一篇php 替換文章中的圖片路徑,下載圖片到本地服務(wù)器的方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
這篇文章主要介紹了PHP實(shí)現(xiàn)對圖片的反色處理功能,涉及php針對圖片的讀取、數(shù)值運(yùn)算等相關(guān)操作技巧,需要的朋友可以參考下
這篇文章主要介紹了PHP實(shí)現(xiàn)可添加水印與生成縮略圖的圖片處理工具類,涉及php針對圖片的顯示、保存、壓縮、水印等相關(guān)操作技巧,需要的朋友可以參考下
這篇文章主要介紹了tp5(thinkPHP5)操作mongoDB數(shù)據(jù)庫的方法,結(jié)合實(shí)例形式簡單分析了mongoDB數(shù)據(jù)庫及thinkPHP5連接、查詢MongoDB數(shù)據(jù)庫的基本操作技巧,需要的朋友可以參考下
thinkphp官網(wǎng)在去年的時(shí)候發(fā)布了tp的顛覆版本thinkphp5,tp5確實(shí)比之前的版本好用了很多,那么下面這篇文章就來給大家介紹關(guān)于在云虛擬主機(jī)部署thinkphp5項(xiàng)目的相關(guān)資料,需要的朋友可以
主站蜘蛛池模板: 久久av网站 | 久久久九九九九 | 日韩中文字幕在线视频观看 | 欧美一级在线观看 | 超碰av免费 | 免费特黄视频 | 不卡在线视频 | 精品国产一区二区国模嫣然 | 亚洲成人免费视频在线观看 | 久久久久久久久综合 | 久久精品网| 91精品久久久 | 精品免费观看 | 美女国内精品自产拍在线播放 | 我要看一级片 | 久久尤物免费一区二区三区 | 四虎永久免费黄色影片 | 精品欧美一区二区精品久久久 | 久久成人综合 | 日韩美女一区二区三区在线观看 | 韩国久久精品 | 久久av影院 | 视频一二三区 | 国产91综合 | 日韩中文字幕一区 | 成人国产在线观看 | 一级做a爰片久久毛片 | 久久中文字幕一区 | 夜夜爽99久久国产综合精品女不卡 | 欧美日韩精品一区二区三区蜜桃 | 日韩欧美一二三区 | 国产精品视频观看 | 精产国产伦理一二三区 | 国产黄色大片 | 欧美精品一二区 | 欧美不卡视频 | 国产精品a久久久久 | 一区二区三区在线 | 手机看片1 | 午夜视频一区二区 | 看羞羞视频 |