當前位置: 首頁>>代碼示例>>PHP>>正文


PHP tar::toTarOutput方法代碼示例

本文整理匯總了PHP中tar::toTarOutput方法的典型用法代碼示例。如果您正苦於以下問題:PHP tar::toTarOutput方法的具體用法?PHP tar::toTarOutput怎麽用?PHP tar::toTarOutput使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tar的用法示例。


在下文中一共展示了tar::toTarOutput方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: tar

                     #echo "hier : $n <br>";
                     if (is_dir($predir . $dir . "/" . $n)) {
                         add_file_reku($predir . $dir . "/", $n);
                     }
                     if (!is_dir($predir . $dir . "/" . $n)) {
                         $tar->addFile($predir . $dir . "/" . $n, TRUE);
                     }
                     #echo $predir.$dir."/".$n."<br>";
                 }
             }
         }
         $tar = new tar();
         foreach ($EXPDIR as $key => $item) {
             add_file_reku($REX[INCLUDE_PATH] . "/../../", $key);
         }
         $content = $tar->toTarOutput($filename . $ext, TRUE);
     }
     // ------------------------------ /FUNC FILES
 }
 if ($content != "" && $exportdl == 1) {
     $filename = $filename . $ext;
     header("Content-type: {$header}");
     header("Content-Disposition: attachment; filename={$filename}");
     echo $content;
     exit;
 } elseif ($content != "") {
     // check filename ob vorhanden
     // aendern filename
     // speicher content in files
     $filename = $REX[INCLUDE_PATH] . "/addons/{$page}/files/{$filename}";
     if (file_exists($filename . $ext)) {
開發者ID:BackupTheBerlios,項目名稱:redaxo-svn,代碼行數:31,代碼來源:index.inc.php

示例2: tar

            }
            if (!is_dir($predir . $dir . "/" . $n)) {
                $tar->addFile($predir . $dir . "/" . $n, TRUE);
            }
            #echo $predir.$dir."/".$n."<br>";
        }
    }
}
if ($FORM[filesubmit]) {
    $tar = new tar();
    foreach ($DIR as $key => $item) {
        add_file_reku("../", $key);
    }
    header("Content-type: tar/gzip");
    header("Content-Disposition: attachment; filename=redaxo_export_" . date("Ymd") . ".tar.gz");
    echo $tar->toTarOutput("redaxo_export_" . date("Ymd") . ".tar.gz", TRUE);
    exit;
}
if (isset($err_msg)) {
    $err_msg = "<tr><td class=dgrey colspan=2><font color=error>{$err_msg}</font></td></tr>";
}
## make dir inputs
chdir("..");
$handle = opendir(".");
$dirstring = "";
while (false !== ($file = readdir($handle))) {
    if (is_dir($file)) {
        if ($file != ".." and $file != ".") {
            if ($file != "redaxo") {
                $dirstring .= "<input type=checkbox name=DIR[{$file}] value=true>{$file}/ &nbsp;&nbsp;\n";
            }
開發者ID:BackupTheBerlios,項目名稱:redaxo-svn,代碼行數:31,代碼來源:export.inc.php


注:本文中的tar::toTarOutput方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。