var maxsize = 6*1024*1024;//6M var errMsg = "上传的附件文件不能超过6M!!!"; var tipMsg = "您的浏览器暂不支持计算上传文件的大小,确保上传文件不要超过6M,建议使用IE.FireFox.Chrome浏览器."; var browserCfg = {}; var ua = window.navigator.userAgent; if (ua.indexOf("MSIE")>=1)…
学习源头: https://blog.csdn.net/ddjjll8877/article/details/52249965 class FileUpdateController extends BaseController{ public function fileUpdate(){ return View::make('file_input.file_update'); } public function fileGet(){ //获取文件 $file= Input::file('file…