이 글에서는 주로 php+html5+ajax를 이용한 이미지 업로드 방법을 소개하고, 이미지 업로드를 위한 ajax 호출 두 가지 방법인 js 네이티브와 jQuery, 그리고 PHP 이미지 업로드 처리와 기타 필요한 기술들을 비교 분석합니다. 참고하시면 됩니다
자세한 내용은 다음과 같습니다.
<?php if (isset($_POST['upload'])) { var_dump($_FILES); move_uploaded_file($_FILES['upfile']['tmp_name'], 'up_tmp/'.time().'.dat'); //header('location: test.php'); exit; } ?>
<!doctype html> <html lang="zh"> <head> <meta charset="utf-8"> <title>HTML5 Ajax Uploader</title> <script src="jquery-2.1.1.min.js"></script> </head> <body> <p><input type="file" id="upfile"></p> <p><input type="button" id="upJS" value="用原生JS上传"></p> <p><input type="button" id="upJQuery" value="用jQuery上传"></p> <script> /*原生JS版*/ document.getElementById("upJS").onclick = function() { /* FormData 是表单数据类 */ var fd = new FormData(); var ajax = new XMLHttpRequest(); fd.append("upload", 1); /* 把文件添加到表单里 */ fd.append("upfile", document.getElementById("upfile").files[0]); ajax.open("post", "test.php", true); ajax.onload = function () { console.log(ajax.responseText); }; ajax.send(fd); } /* jQuery 版 */ $('#upJQuery').on('click', function() { var fd = new FormData(); fd.append("upload", 1); fd.append("upfile", $("#upfile").get(0).files[0]); $.ajax({ url: "test.php", type: "POST", processData: false, contentType: false, data: fd, success: function(d) { console.log(d); } }); }); </script> </body> </html>
요약: 위 내용은 이 글의 전체 내용입니다. 모든 분들의 공부에 도움이 되었으면 좋겠습니다.
관련 권장 사항:
PHP는 싱글톤 모드를 기반으로 PDO 클래스 작성 방법을 구현합니다.
PHP는 Tencent Cloud COS 인터페이스에 필요한 요청 서명을 생성합니다.
WeChat 다중 이미지를 모방하는 PHP에 대한 자세한 설명 예시 미리보기 및 업로드
위 내용은 php+html5+ajax를 사용한 이미지 업로드 방법 및 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!