ユーザーから自分のウェブサイトに履歴書をアップロードしようとしています
だから私はファイルのアップロードもdoc、pdf、およびdocxを制限しました
ms word doc ファイルは pdf と一緒に正常にアップロードされますが、docx ファイルは一緒にアップロードされます。
application/zip MIME タイプなので、ファイルはアップロードされません
docx ファイルが他のファイルとしてアップロードされるように正しい MIME タイプ チェックを行う方法
以下は私のコードです
$config = Zend_Registry::get ( 'config' );
$files_path = $config->resume->path;
$adapter = new Zend_File_Transfer ();
// Limit the MIME type of all given files to gif and jpeg images
$adapter->addValidator ( 'MimeType', false, array ('application/msword','application/vnd.openxmlformats-officedocument.wordprocessingml.document','application/pdf' ) );
$files = $adapter->getFileInfo ();
$file_name = null;
$tmpArr = null;
foreach ( $files as $file => $info ) {
if (! empty ( $info ['name'] )) {
$tmpArr = explode ( ".", $info ['name'] );
}
}
if (! empty ( $tmpArr )) {
//$file_name = $tmpArr [0] . "-" . $post ['id'] . "." . $tmpArr [1];
$file_name = $tmpArr [0] . "-" . $post ['id'] . "." . $tmpArr [count ( $tmpArr ) - 1];
$adapter->setDestination ( $files_path );
$adapter->addFilter ( 'Rename', array ('target' => $files_path . DS . $file_name, 'overwrite' => true ) );
if ($adapter->receive ()) {
// # = # = # = # = # = # = # = # = # = # = # = # = # = # = # = # = # =
$arrayKeys = array_keys ( $files );
$actual_file_name = $tmpArr [0] . "." . $tmpArr [1];
$uploaded_file_name = $adapter->getFileName ( $arrayKeys [0], false );
if ($actual_file_name == $uploaded_file_name) {
rename ( $files_path . DS . $actual_file_name, $files_path . DS . $file_name );
}
// # = # = # = # = # = # = # = # = # = # = # = # = # = # = # = # = # =
$post ['filename'] = $file_name;
$result = $employeeModel->updateEmployeeResume ( $post );
$old_file = $files_path . DS . $post ['c_image_name'];
if (file_exists ( $old_file )) {
@unlink ( $old_file );
}
$this->_flashMessenger->addMessage ( 'Resume added successfully' );
}