0

我正在对下载和放入 zip 文件进行测试,当它位于 webroot/htdocs 中的单个文件(例如图像/)中时,我下载它没有问题,但我无法在 htdocs 或图像/New_Folder 之外下载它。这个表单代码现在工作正常,

    <form name="zips" method="post" action='downloadFile.php'>

        <input type="checkbox" name="files[]" value="makeZipinPHP.jpg" />
        <img src="images/makeZipinPHP.jpg" /><br>

        <input type="checkbox" name="files[]" value="tick.jpg" />
        <img src="images/tick.jpg" />

        <input type="submit" name="createpdf" value="Download as ZIP" />&nbsp;
        <input type="reset" name="reset"  value="Reset" />

    </form>

但是我可以将 src 更改为示例吗

   C:/images/New_Folder/tick.jpg

这是用于 downloadFile.php 的,它现在也在工作,但我想改变

 $file_folder = "images/"

例如 $file_folder="C:/image/New_Folder/" 有可能吗?

    <?php
    $error = ""; //error holder
    if(isset($_POST['createpdf']))
    {
        $post = $_POST;
        $file_folder = "images/";// folder to load files
        if(extension_loaded('zip'))
        {
            // Checking ZIP extension is available
            if(isset($post['files']) and count($post['files']) > 0)
            {
                // Checking files are selected
                $zip = new ZipArchive(); // Load zip library
                $zip_name = time().".zip"; // Zip name
                if($zip->open($zip_name, ZIPARCHIVE::CREATE)!==TRUE)
                {
                    // Opening zip file to load files
                    $error .= "* Sorry ZIP creation failed at this time";
                }
                foreach($post['files'] as $file)
                {
                    $zip->addFile($file_folder.$file); // Adding files into zip
                }
                $zip->close();
                if(file_exists($zip_name))
                {
                    // push to download the zip
                    header('Content-type: application/zip');
                    header('Content-Disposition: attachment; filename="'.$zip_name.'"');
                    readfile($zip_name);
                    // remove zip file is exists in temp path
                    unlink($zip_name);
                }

            }
            else
                $error .= "* Please select file to zip ";
        }
        else
           $error .= "* You dont have ZIP extension";
    }
    ?>
4

2 回答 2

0

您创建的服务器( localhost )的根位于“htdocs”,它无权访问您计算机的任何文件....

因此,如果您想从服务器(Apache 或任何其他)下载/渲染任何内容,您必须将其放在 htDocs 文件夹中。

于 2013-06-26T08:15:23.327 回答
0

更改$file_folder为完整的系统文件夹路径应该可以正常工作,只要它为您的服务器环境(c:\\image\\New_Folder\\c:/image/New_Folder/在 Microsoft Windows 上)正确表达,并且没有对 PHP 实施的权限问题或限制(例如open_basedir等)。

于 2013-06-26T08:18:58.510 回答