media_handle_upload를 사용하여 여러 파일 업로드


16

WordPress 양식 플러그인이 있으며 media_handle_upload파일을 업로드하고 ID를 직접 가져 와서 메타 날짜로 게시물에 ID를 첨부하는 데 사용합니다. 다음을 수행했습니다.

양식 필드의 HTML은 다음과 같습니다.

<input type="file" name="my_file_upload" id="my_file_upload">

그리고 PHP 코드는 다음과 같습니다.

$attach_id = media_handle_upload( 'my_file_upload', $post_id );
if ( is_numeric( $attach_id ) ) {
    update_post_meta( $post_id, '_my_file_upload', $attach_id );
}

그리고 모든 것이 완벽하게 작동했습니다.

이제 HTML 코드가 여러 파일을 업로드하려고합니다.

<input type="file" name="my_file_upload[]" id="my_file_upload[]" multiple="multiple">

그러나 media_handle_upload여러 파일 업로드로 기능을 작동시킬 수 없습니다.

도움을 주시면 감사하겠습니다.


업로드 여러 모바일 그래서 지금 icant 게시물에 전체 코드 스피에 사용 foreach는
그늘 M Rasmy

많은 foreach 루프를 시도했지만 아무도 작동하지 않았습니다.
Engr.MTH 2016

답변:


14

처음부터 이것을 지나서 커스텀 템플릿을 사용한다면

<?php
 if( 'POST' == $_SERVER['REQUEST_METHOD']  ) {
if ( $_FILES ) { 
    $files = $_FILES["my_file_upload"];  
    foreach ($files['name'] as $key => $value) {            
            if ($files['name'][$key]) { 
                $file = array( 
                    'name' => $files['name'][$key],
                    'type' => $files['type'][$key], 
                    'tmp_name' => $files['tmp_name'][$key], 
                    'error' => $files['error'][$key],
                    'size' => $files['size'][$key]
                ); 
                $_FILES = array ("my_file_upload" => $file); 
                foreach ($_FILES as $file => $array) {              
                    $newupload = my_handle_attachment($file,$pid); 
                }
            } 
        } 
    }

}
?>

function.php에서

function my_handle_attachment($file_handler,$post_id,$set_thu=false) {
  // check to make sure its a successful upload
  if ($_FILES[$file_handler]['error'] !== UPLOAD_ERR_OK) __return_false();

  require_once(ABSPATH . "wp-admin" . '/includes/image.php');
  require_once(ABSPATH . "wp-admin" . '/includes/file.php');
  require_once(ABSPATH . "wp-admin" . '/includes/media.php');

  $attach_id = media_handle_upload( $file_handler, $post_id );
  if ( is_numeric( $attach_id ) ) {
    update_post_meta( $post_id, '_my_file_upload', $attach_id );
  }
  return $attach_id;
}

soure http://www.kvcodes.com/2013/12/create-front-end-multiple-file-upload-wordpress/


귀하의 코드에 감사드립니다. 양식을 작성하여 게시물을 제출하고 있습니다. 업로드 된 파일의 유효성을 검사하는 방법이 궁금합니다. 방법이 있습니까?
sb0k

3
전역 $ _FILES 변수를 덮어 쓰지 않습니까?
ReLeaf

@ReLeaf이 있어야 전역의 $ _FILES 변수를 덮어 씁니다. media_handle_upload()외모에 대한$_FILES[$file_handler]
앤디 맥컬리 - 브룩

이 스 니펫은 여러 파일을 업로드하려고 할 때 Android WebView를 제외하고 완벽하게 작동합니다 (단일 파일은 괜찮습니다).
Rollor

7

함수 파일을 사용하지 않고 이것을 구현하려면 내가 만든 간소화 된 버전을 사용할 수 있습니다. 이 테스트 코드는 100 % 작동합니다

<form id="file_upload" method="post" action="#" enctype="multipart/form-data">
     <input type="file" name="my_file_upload[]" multiple="multiple">
     <input name="my_file_upload" type="submit" value="Upload" />
</form>

제출이 발생하는 페이지에 PHP 코드를 배치하십시오. 필자의 경우 양식 작업과 동일한 페이지에서 "#"로 설정되었습니다.

<?php if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    require_once( ABSPATH . 'wp-admin/includes/image.php' );
    require_once( ABSPATH . 'wp-admin/includes/file.php' );
    require_once( ABSPATH . 'wp-admin/includes/media.php' );

    $files = $_FILES["my_file_upload"];
    foreach ($files['name'] as $key => $value) {
        if ($files['name'][$key]) {
            $file = array(
                'name' => $files['name'][$key],
                'type' => $files['type'][$key],
                'tmp_name' => $files['tmp_name'][$key],
                'error' => $files['error'][$key],
                'size' => $files['size'][$key]
            );
            $_FILES = array("upload_file" => $file);
            $attachment_id = media_handle_upload("upload_file", 0);

            if (is_wp_error($attachment_id)) {
                // There was an error uploading the image.
                echo "Error adding file";
            } else {
                // The image was uploaded successfully!
                echo "File added successfully with ID: " . $attachment_id . "<br>";
                echo wp_get_attachment_image($attachment_id, array(800, 600)) . "<br>"; //Display the uploaded image with a size you wish. In this case it is 800x600
            }
        }
    }
} ?>

이 메소드는 함수가 foreach 루프를 통해 호출 될 때마다 포함하지 않고 양식 제출이 완료 될 때 필요한 파일을 한 번만 포함합니다.


편집 : $post_thumbnail_id = wp_get_attachment_image_src($attachment_id, array(800, 600));예제에 필요하지 않으므로 코드 를 벗어났습니다 . 그러나 이미지의 URL을 얻으려면 도움이 될 것입니다. :)
Lucky

5

감사합니다 @ shady-m-rasmy 언급 한 코드를 사용했으며 두 번째 foreach 루프 (사용자 정의 템플릿 부분 아래)는 한 번만 실행되므로 필요하지 않은 것 같습니다.

foreach ($_FILES as $file => $array) {              
   $newupload = my_handle_attachment($file,$pid);
} 

그래서 그것은 잎만

$newupload = my_handle_attachment( "my_file_upload", $pid);

0

동일한 메타 키에 대한 여러 항목

$values = [ 'red', 'yellow', 'blue', 'pink' ];
foreach( $values as $value ) {
    // This method uses `add_post_meta()` instead of `update_post_meta()`
    add_post_meta( $item_id, 'color', $value );
}

코드를 포맷하고 설명을 추가 할 수 있습니까?
Nilambar Sharma

이것이 문제를 해결하는지 확실하지 않습니다. 가장 어려운 부분은 여러 파일을 포스트에 첨부하지 않고 제출 된 파일을 파싱하는 것 같습니다.
Rup

0

HTML

<input type="file" id="id_termine_attachment" multiple="multiple" name="id_termine_attachment[]" value="" size="25" />

PHP

function upload_file($_FILES) {

    if (!empty($_FILES['id_termine_attachment'])) {
        $supported_types = array(
            'application/pdf',
            'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
            'application/msword',
            'image/gif',
            'image/jpeg',
            'image/png',
            'application/zip'
         );

        $file_arr = reArrayFiles($_FILES['id_termine_attachment']);
        $file_urls = [];

        foreach ($file_arr as $file) {
            $arr_file_type = wp_check_filetype(basename($file['name']));
            $uploaded_type = $arr_file_type['type'];
            if (in_array($uploaded_type, $supported_types)) {
                $upload = wp_upload_bits($file['name'], null, file_get_contents($file['tmp_name']));
                if (isset($upload['error']) && $upload['error'] != 0) {
                    wp_die('There was an error uploading your file. The error is: ' . $upload['error']);
                } else {
                    array_push($file_urls, $upload['url']);

                } // end if/else
            } else {
                wp_die("This filetyp is not available!");
            }
        }
        update_post_meta($post_id, 'id_termine_attachment', $file_urls);
    }
}



function reArrayFiles(&$file_post) {
    $file_ary = array();
    $file_count = count($file_post['name']);
    $file_keys = array_keys($file_post);

    for ($i=0; $i<$file_count; $i++) {
        foreach ($file_keys as $key) {
            $file_ary[$i][$key] = $file_post[$key][$i];
        }
    }

    return $file_ary;
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.