php利用ajax文件上传,如何在PHP中利用AjaxForm实现一个文件上传功能

如何在PHP中利用AjaxForm实现一个文件上传功能

发布时间:2020-12-18 14:52:38

来源:亿速云

阅读:94

作者:Leah

如何在PHP中利用AjaxForm实现一个文件上传功能?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

在使用ajaxForm方法之前,首先需要安装form.js的插件,网上有;

一、首先说用法,ajaxForm可以接收0或1个参数,该参数可以是一个变量、一个对象或回调函数,这个对象主要有以下参数:var object= {

url:url,      //form提交数据的地址

type:type,    //form提交的方式(method:post/get)

target:target,  //服务器返回的响应数据显示的元素(Id)号

beforeSerialize:function(){} //序列化提交数据之前的回调函数

beforeSubmit:function(){},  //提交前执行的回调函数

success:function(){},      //提交成功后执行的回调函数

error:function(){},       //提交失败执行的函数

dataType:null,       //服务器返回数据类型

clearForm:true,       //提交成功后是否清空表单中的字段值

restForm:true,       //提交成功后是否重置表单中的字段值,即恢复到页面加载时的状态

timeout:6000         //设置请求时间,超过该时间后,自动退出请求,单位(毫秒)。

}

ajaxForm js的code

$(function(){

$("form").ajaxForm(object);

})

实例具体代码code

htmlcodehtml PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

PHP+Ajax异步带进度条上传文件实例_php

文件上传

文件上传

这里只是一个ajax+php+ajaxForm上传文件word文档例子

选择上传文件名:

10% Complete

$(function () {

$("#myupload").ajaxForm({

dataType:'json',

beforeSend:function(){

$(".progress").show();

},

uploadProgress:function(event,position,total,percentComplete){

var percentVal = percentComplete + '%';

$(".progress-bar").width(percentComplete + '%');

$(".progress-bar").html(percentVal);

$(".sr-only").html(percentComplete + '%');

},

success:function(data){

$(".progress").hide();

if(data.error == "empty_name"){

alert("文件上传非法,上传失败!");

exit();

};

if(data.error == "large"){

alert("图片上传不能大于2M,上传失败!");

exit();

};

if(data.error == "format"){

alert("图片格式错误,上传失败");

exit();

};

//$(".files").html(""+data.name+"("+data.size+"k) 删除");

$(".files").html("文件名: "+data.name+" del 大小:"+data.size);

var img = "files/"+data.pic;

     $(".showimg").html("");

alert("上传成功!");

},

error:function(){

alert("上传失败");

}

});

$(".progress").hide();

});

php上传上传类upload.class.php文件<?php

date_default_timezone_set("PRC"); //设置时间区域

//上传类

class upload{

protected $file_path = "files"; //当前files存储文件夹

protected $file_size = 5120000; //5M 用户上传

/**

*检测文件是否为空

*/

public function check_file($get_file)

{

if (empty($get_file))

{

$type = "check_file";

$arr = array('error'=>'empty_name','type'=>$type);

echo json_encode($arr);

exit();

}

return true;

}

/**

*检测文件类型

*/

public function check_type($get_type)

{

if (( $get_type == ".docx" ) || ( $get_type == ".doc" )) {

//这里只是判断上传word文档可以自己添加

}else{

$type = "check_type";

$arr = array('error'=>'format','type'=>$type);

echo json_encode($arr);

exit();

}

return true;

}

/**

*检测文件大小

*/

public function check_size($get_file)

{

if ( $get_file != "" ) {

if ( $get_file > $this->file_size ) {

$arr = array('error'=>'large');

echo json_encode($arr);

exit();

}

}else{

return false;

exit();

}

return true;

}

/**

*文件保存

*/

public function save_file($file_type,$file_tmp_name)

{

$rand = rand(1000, 9999);

$pics =date('YmdHis') . $rand . $file_type;

$path = $this->file_path."/".$pics;

$result = move_uploaded_file($file_tmp_name, $path);

if($result){

return $pics;

}else{

return false;

exit();

}

}

}

?>

ajax提交php处理文件upload.php<?php

include("upload.class.php");

$up_obj = new upload();

//获取上传文件名

$get_fileName = $_FILES['mypic']['name'];

$get_fileSize = $_FILES['mypic']['size'];

$get_TmpFiles = $_FILES['mypic']['tmp_name'];

$get_fileType = strstr($get_fileName, '.');

$check_result = $up_obj->check_file($get_fileName);

if($check_result){

$result_type = $up_obj->check_type($get_fileType);//检查文件类型

if($result_type){

$result_size = $up_obj->check_size($get_fileSize);//检查文件大小

if($result_size){

$pics = $up_obj->save_file($get_fileType,$get_TmpFiles); //文件上传保存

$size = round($get_fileSize/1024,2);

$arr = array(

'name' => $get_fileName,

'pic' => $pics,

'size'=> $size,

'error' => 2,

'list' =>$_POST['list']

);

if($pics){ //检查文件上传状态

echo json_encode($arr);

}

}

}

}

?>

关于如何在PHP中利用AjaxForm实现一个文件上传功能问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/417729.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

asp.net记录错误日志的方法

1、说明 在调试发布后的asp.net项目时有可能会遇到意想不到的错误&#xff0c;而未能及时的显示。这就需要记录日志来跟踪错误信息&#xff0c;所以写了个简单的记录信息的方法&#xff0c;记录简单的文本信息也可以使用。此方法是以生成文本文件的方式记录的&#xff0c;下面贴…

Flex DES加密

as3crypto&#xff1a;一个as3的关于加解密的开源项目 http://code.google.com/p/as3crypto/ 加密 var key:ByteArray new ByteArray(); key.writeUTFBytes("cf43qbhs"); var iv:ByteArray new ByteArray(); iv.writeUTFBytes("cf43qbhs"); va…

oracle建表代码,Oracle 建表(一对多)代码及相关约束示例

建表(一对多)代码及相关约束create table t_class(c_id number(3) primary key,c_name varchar2(20) not null);create table t_stu(s_id number(5) primary key,s_name varchar2(8) not null,sex char(2) default 男,birthday date,school_age number(2) check(school_age>…

Flex中的Base64加解密

Flex中的Base64加解密Flex sdk3就内置了Base64的加/解密工具类分别是mx.utils.Base64Encodermx.utils.Base64DecoderBase64Encoder用法如下&#xff1a; var str:String "原始字符串";//获取原始字符串var base64:Base64Encoder new Base64Encoder();base64.insert…

iOS10 UI教程管理层次结构

iOS10 UI教程管理层次结构 iOS10 UI教程管理层次结构&#xff0c;在一个应用程序中&#xff0c;如果存在多个层次结构&#xff0c;就需要对这些层次结构进行管理。在UIView类中提供了可以用来管理层次结构的方法&#xff0c;让开发者可以添加、移动、删除来自层次结构中的元素。…

flash影响中文输入

外部网页&#xff1a;鼠标离开flash时可以输入中文<s:Application mouseOut"IMEEnabled()"> /** * 允许中文输入法 */ protected function IMEEnabled():void { IME.enabledtrue; }内部控件&#xff1a;获取焦点时加IME.enabledtrue;

oracle rac添加用户组,oracle 11g rac 与 oracle 10 rac所需要建立的组和用户

oracle 11g rac配置1. Create OS groups using thecommand below. Enter these commands as the root user:#/usr/sbin/groupadd -g 501 oinstall#/usr/sbin/groupadd -g 502 dba#/usr/sbin/groupadd -g 504 asmadmin#/usr/sbin/groupadd -g 506 asmdba#/usr/sbin/groupadd -g …

appium()-The event firing

原文地址&#xff1a;https://github.com/appium/java-client/blob/master/docs/The-event_firing.md since 4.1.0 The purpose This feature allows end user to organize the event logging on the client side. Also this feature may be useful in a binding with standard…

Flash Builder非法关闭导致无法启动

"C:\Program Files\Adobe\Adobe Flash Builder 4.5\FlashBuilder.exe" -clean 有时候出于某种原因&#xff0c;Flash Builder被非法关闭了&#xff08;比如死机&#xff09;&#xff0c;这个时候再启动Flash Builder&#xff0c;就会提示错误&#xff0c;提示你去看一…

c# oracle datasource,C# 连接Oracle 数据库 示例源码下载

【实例简介】C# 实现 Oracle 数据库的 增删改查 操作【实例截图】【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using S…

前端学习(2169):vue-router安装和配置方式

main.js import VueRouter from vue-router import Vue from vue//安装插件 const routers new VueRouter({//配置之间的关系routes })export default router index.js import VueRouter from vue-router import Vue from vue//安装插件 const routers new VueRouter({//配…

(模板)网页游戏用的“内容区”的“图赏影音”模板

网页游戏&#xff0c;没图赏影音用到的 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns"http://www.w3.org/1999/xhtml"> <head>…

wmode解决flash透明及层深问题

在做web开发中可能会遇到flash遮挡页面中元素的情况&#xff0c;无论怎么设置flash容器和层的深度(z-index)也无济于事&#xff0c;现有的解决方案是在插入flash的embed或object标签中加入”wmode”属性并设置为wmode“transparent”或”opaque”&#xff0c;但wmode属性到底是…

url oracle default schema,oracle @Table中使用schema时insert报错

第一部分测试情况如下:maven修改com.alibabadruid1.1.10实体类Table(name "dpcenter.xeuser")public class OUser {private String userid;private String username;...}测试代码public static void main(String[] args) {OracleStyle stylenew OracleStyle();Conne…

如何在intellj Idea中给新建的项目添加jar包?

1. 假如我加入joda.jar 2. 找到发布的你想要的jar包&#xff0c;下载&#xff01; 3. 解压刚下载的jar包&#xff0c;复制 4. 在intellj idea中新建一个java项目&#xff0c;然后创建一个专门用于放jar的lib文件夹&#xff0c; 然后添加ctrlv 黏贴刚复制的jar包&#xff0c; 然…

outerDocument访问外部属性方法

使用"outerDocument.name"来访问外部的控件或者属性。

matlab builder for java下载,Matlab Builder JA - Compile Matlab into a Java jar - Free Version?

问题Please keep in mind that I know nothing about Matlab.Matlab Builder JA lets developer build Matlab applications and export them into Java jars. Thats great, I just have to produce a jar and I can then use it from other java code.Does anyone know how mu…