gpt4 book ai didi

PHP 动态 zip 文件创建与非图像文件类型崩溃。 (wp)

转载 作者:搜寻专家 更新时间:2023-10-31 22:13:23 27 4
gpt4 key购买 nike

我有一个功能可以获取上传的文件 (WORDPRESS) 并将它们添加到(新创建的)zip 文件中。每个新文件都会添加到 zip 中(如果尚未创建 - 第一个文件将创建一个),并且还会添加到带有文件列表的评论中。

 function Ob99_generate_zip_file($meta) {
// we always need post_id , right ?
if( isset($_GET['post_id']) ) {
$post_id = $_GET['post_id'];
} elseif( isset($_POST['post_id']) ) {
$post_id = $_POST['post_id'];
}
//setting some more variables.
$file = wp_upload_dir();// take array
$file2 = wp_upload_dir();//debug
$zipname = $file['path'].'file.zip'; // set zip file name
$file = trailingslashit($file['basedir']).$meta['file'];// construct real path

// Without this next condition the function dies. WHY ??
list($orig_w, $orig_h, $orig_type) = @getimagesize($file); // not help to comment
if (!$orig_type == IMAGETYPE_GIF || !$orig_type == IMAGETYPE_PNG|| !$orig_type == IMAGETYPE_JPEG) {
//why other filetypes not working ??
return ;
}

$zip = new ZipArchive; // initiatte class
$zip->open($zipname , ZipArchive::CREATE); // open buffer
$new_filename = substr($file,strrpos($file,'/') + 1); //we do not need nested folders
$zip->addFile($file,$sitename.'/'.$new_filename); // we add the file to the zip
if (file_exists($zipname)){
$comment = $zip->getArchiveComment(); // if the file already exist read the comment
}
else { // if not - let´s give it a cool retro header
$comment_head = '*********************************'. PHP_EOL ;
$comment_head .= '****** <<< FILE CONTENT >>> *****'. PHP_EOL ;
$comment_head .= '*********************************'. PHP_EOL ;

}
$comment = $comment_head . $comment ;// add header before comment
$comment = $comment . PHP_EOL . PHP_EOL . $meta['file'] ; // add new file name
$zip->setArchiveComment($comment); // and comment
$zip->addFromString('filelist.txt', $comment); // create txt file with the same list
$zip->close()or die('can not create zip file'.$file.print_r($meta).'---- DEBUG SEPERATOR ---- '.print_r($file2)); // FINISHED or DIE with debug
}

我的问题:如果我尝试上传图像以外的任何文件 - 该功能将死掉。我已经添加了检查图像类型的条件 - 但我想知道它为什么会崩溃以及如何在没有所述条件的情况下使其工作......zip 函数对 PDF、doc 或其他文件有任何问题吗?那是一个wordpress问题吗?

最佳答案

问题部分似乎是您询问 PDF 等图像大小的地方。你为什么不试试:

$image_size = getimagesize($file);

if($image_size===false)
{
// This is not an image
// Do what you want to PDFs, etc.
}
else
{
// This is an image
// Find out image type, dimensions, etc.
}

关于PHP 动态 zip 文件创建与非图像文件类型崩溃。 (wp),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9937486/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com