0

私はこれらすべてに初心者であり、立ち往生しています!

次のようなテーブルがあります。

<tr class="req">
        <td><input name="checkbox" type="checkbox" id="Pform70" /></td>
            <td align="left" ><a     href="https://www.yadayada.com/uat088922.pdf" title="Form Title" id="Pform70" target=new>Pform70</a></td>
    <td>Required</td>
    <td>Form Title </td>
    <td>ksdjasdjf;alsdjfal; </td>

そのため、クリックすると、チェックされたすべてのドキュメントを開くか、チェックされたドキュメントを印刷するテーブルの上にボタンが必要です。

私は探していました、近づいてきましたが、十分に近づいていません。皆さんありがとう!

4

1 に答える 1

0

選択した (チェックした) アイテムを結合された .zip ファイルにダウンロードできます。

まず、ファイルのリストを含むフォームを作成します。

<form action="download.php" method="get">
<table>
<tr>
  <td><input type="submit" name="mysubmit" value="Download!"></td>
</tr>
<tr class="req">
  <td><input type="checkbox" name="file[0]" id="Pform70" /></td>
  <td align="left"><a href="https://www.yadayada.com/uat088922.pdf" title="Form Title" id="Pform70" target=new>Pform70</a></td>
  <td>Required</td>
  <td>Form Title</td>
  <td>ksdjasdjf;alsdjfal;</td>
</tr>
</table>
</form>

チェック ボックスの名前が配列になっていることに注意してください。

ダウンロード.phpは次のとおりです。

if (!empty($_POST['file'])) {
    // open zip
    $zip_path = '/path/to/created/download.zip';
    $zip = new ZipArchive(); 
    if ($zip->open($zip_path, ZIPARCHIVE::CREATE) !== TRUE) {
        die ("An error occurred creating your ZIP file.");
    }  
    // checkbox values dont matter because only checked boxes show up in POST data
    foreach ($_POST['file'] as $key => $val) {
        // generate filename to add to zip
        $filename = '/path/to/php/file' . $key . '.php';
        $zip->addFile($filename) or die ("ERROR: Could not add the file $filename");  
    }
    $zip->close();

    //===============
    // force download
    //===============
// assume you have a full path to file stored in $zip_path
if (!is_file($zip_path)) {
  die('The file appears to be invalid.');
}

$zip_path = str_replace('\\', '/', realpath($zip_path));
$filesize = filesize($zip_path);
$filename = substr(strrchr('/'.$zip_path, '/'), 1);
$extension = strtolower(substr(strrchr($zip_path, '.'), 1));

// use this unless you want to find the mime type based on extension
$mime = array('application/octet-stream');

header('Content-Type: '.$mime);
header('Content-Disposition: attachment; filename="'.$filename.'"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: '.sprintf('%d', $filesize));
header('Expires: 0');

// check for IE only headers
if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))) {
  header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  header('Pragma: public');
} else {
  header('Pragma: no-cache');
}

$handle = fopen($filepath, 'rb');
fpassthru($handle);
fclose($handle);


} // close $_POST check

ZipArchiveの詳細については、php.net ドキュメントを参照してください。

于 2012-07-09T18:25:59.177 に答える