답변:
file_save_upload ()와이 를 호출하는 함수를 살펴보십시오 .
이 기능은 파일의 유효성 검사를 처리하여 새 위치에 저장합니다. Drupal 7에서는 파일을 file_managed 테이블에 추가합니다.
파일은 임시 파일로 저장되므로 나중에 파일 상태를 영구적으로 설정해야합니다.
양식의 유효성 검증 후크 (제출 핸들러 이전) 내에 file_save_upload 함수를 구현하여 파일 업로드에 실패했거나 유효성 검증 요구 사항을 충족하지 않은 경우 사용자에게 경고 할 수 있습니다.
검증하려는 이미지 필드의 이름이 인 경우 image
file_save_upload의 첫 번째 매개 변수는 다음과 같이 이미지 여야합니다.
$ path = file_save_upload ( 'image', ...);
그런 다음이 함수는 이미지가 업로드 된 서버의 경로를 반환합니다 (예 : 사용자 정의 데이터베이스 필드에 해당 경로를 저장할 수 있음).
양식 정의에서 이것을 누락했습니다.
$form['#attributes']['enctype'] = 'multipart/form-data'; // If this is not here, upload will fail on submit
양식에 파일 업로드 위젯을 작성하는 데 사용하는 논리는 다음과 같습니다.
// these give us the file upload widget:
$form['#attributes']['enctype'] = 'multipart/form-data'; // If this is not here, upload will fail on submit
$form['fid'] = array( '#title' => t('Upload image'),
'#type' => 'file',
'#description' => t('Images must be one of jpg, bmp, gif or png formats.'),
);
그리고 여기 논리에 이미지 파일 이름 제한이 있기 때문에 양식의 콜백 유효성 검사에있는 해당 논리에 대응하지만, 원하는 경우 제출 콜백에 배치 할 수 있습니다.
// @see: http://api.drupal.org/api/function/file_save_upload/6
// $file will become 0 if the upload doesn't exist, or an object describing the uploaded file
$file = file_save_upload( 'fid' );
error_log( 'file is "'.print_r( $file, true ).'"' );
if (!$file) {
form_set_error('fid', t('Unable to access file or file is missing.'));
}
그게 다야.
multipart/form-data
drupal 7 에는 필요하지 않습니다 . 파일 필드를 사용할 때 drupal 7에 빌드됩니다.
$file === null
을 의미합니다 no file was uploaded
. / ... )이 경우 어떻게해야합니까? 이런 종류의 것을 어떻게 디버깅 할 수 있습니까?
이미지 업로드를 지원해야하는 테마에서 주로 사용하는 일반 유효성 검사 기능이 있습니다. 그것을 그대로 사용하거나 약간 변경하여 사용할 수는 있지만 멀리 갈 수 있습니다.
/**
* Validate/submit handler used for handling image uploads
*/
function module_upload_image_validate($form, &$form_state) {
// This is not needed, I use this to use the same validate function
// for several fields.
$key = $form['#key'];
$file = file_save_upload($key, array(
'file_validate_is_image' => array(),
'file_validate_extensions' => array('png gif jpg jpeg'),
));
if ($file) {
// Get the image info to get the correct extension for the uploaded file.
$info = image_get_info($file->filepath);
if (file_move($file, 'destination/filename'. $info['extension'], FILE_EXISTS_REPLACE)) {
// Mark the file for permanent storage.
file_set_status($file, FILE_STATUS_PERMANENT);
// Update the files table.
drupal_write_record('files', $file, 'fid');
$form_state['values'][$key] = $file->filepath;
}
else {
form_set_error($key, t('Failed to write the uploaded file to the site’s files folder.'));
}
}
}
이 함수를 사용하면 파일 제출을 양식 제출 핸들러의 값으로 가져옵니다. 사용법에 따라 대신 파일 ID를 원할 수 있습니다.
$form['#attributes']['enctype']
드루팔 7에서 자동으로 알아서 것