PHP를 사용한 jQuery AJAX 파일 업로드
최소한의 설정으로 파일 업로드를 성공적으로 구현하려면 다음 단계를 따르세요.
클라이언트 측 (jQuery)
$('#upload').on('click', function() { var file_data = $('#sortpicture').prop('files')[0]; var form_data = new FormData(); form_data.append('file', file_data); $.ajax({ url: 'upload.php', // Point to the server-side PHP script dataType: 'text', // Expect text back from the PHP script cache: false, contentType: false, processData: false, data: form_data, type: 'post', success: function(php_script_response) { alert(php_script_response); // Display any response from the PHP script } }); });
서버측(PHP)
<?php if (0 < $_FILES['file']['error']) { echo 'Error: ' . $_FILES['file']['error'] . '<br>'; } else { move_uploaded_file($_FILES['file']['tmp_name'], 'uploads/' . $_FILES['file']['name']); } ?>
추가 참고 사항:
위 내용은 PHP로 jQuery AJAX 파일 업로드를 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!