加入收藏 | 设为首页 | 会员中心 | 我要投稿 汽车网 (https://www.0577qiche.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

PHP Ajax文件异步上传例子

发布时间:2023-09-15 11:00:26 所属栏目:PHP教程 来源:
导读:文件异步上传通常是通过ajax实现了,也有朋友说使用iframe来实现这个虽然说可以达到目的但不是真正的a异步上传了并且如果浏览器不支持irame那么iframe模仿上传就无效了,下面我们来看一段真正的文件异步上传例子.

P
文件异步上传通常是通过ajax实现了,也有朋友说使用iframe来实现这个虽然说可以达到目的但不是真正的a异步上传了并且如果浏览器不支持irame那么iframe模仿上传就无效了,下面我们来看一段真正的文件异步上传例子.

PHP 代码:

$fileName = $_FILES['afile']['name']; 
$fileType = $_FILES['afile']['type']; 
$fileContent = file_get_contents($_FILES['afile']['tmp_name']); 
$dataUrl = 'data:' . $fileType . ';base64,' . base64_encode($fileContent); 
$json = json_encode(array( 
  'name' => $fileName, 
  'type' => $fileType, 
  'dataUrl' => $dataUrl, 
  'username' => $_REQUEST['username'], 
  'accountnum' => $_REQUEST['accountnum'] 
)); 
echo $json; 
 
Html 及 JS 代码 
<!DOCTYPE html> 
<!-- 
Copyright 2012 Google Inc. 
Licensed under the Apache License, Version 2.0 (the "License"); 
you may not use this file except in compliance with the License. 
You may obtain a copy of the License at 
     http://www.apache.org/licenses/LICENSE-2.0 
Unless required by applicable law or agreed to in writing, software 
distributed under the License is distributed on an "AS IS" BASIS, 
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
See the License for the specific language governing permissions and 
limitations under the License. 
Author: Eric Bidelman (ericbidelman@chromium.org) 
--> 
<html> 
<head> 
<meta charset="utf-8" /> 
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" /> 
<title>xhr.send(FormData) Example</title> 
</head> 
<body> 
 
<input type="file" name="afile" id="afile" accept="image/*"/> 
 
<script> 
document.querySelector('#afile').addEventListener('change', function(e) { 
  var file = this.files[0]; 
  var fd = new FormData(); 
  fd.append("afile", file); 
  // These extra params aren't necessary but show that you can include other data. 
  fd.append("username", "Groucho"); 
  fd.append("accountnum", 123456); 
  var xhr = new XMLHttpRequest(); 
  xhr.open('POST', 'handle_file_upload.php', true); 
   
  xhr.upload.onprogress = function(e) { 
    if (e.lengthComputable) { 
      var percentComplete = (e.loaded / e.total) * 100; 
      console.log(percentComplete + '% uploaded'); 
    } 
  }; 
  xhr.onload = function() { 
    if (this.status == 200) { 
      var resp = JSON.parse(this.response); 
      console.log('Server got:', resp); 
      var image = document.createElement('img'); 
      image.src = resp.dataUrl; 
      document.body.appendChild(image); 
    }; 
  }; 
  xhr.send(fd); 
}, false); 
</script> 
<!--[if IE]> 
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script> 
<script>CFInstall.check({mode: 'overlay'});</script> 
<![endif]--> 
</body> 
</html>

(编辑:汽车网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章