本文整理汇总了PHP中tar::appendTar方法的典型用法代码示例。如果您正苦于以下问题:PHP tar::appendTar方法的具体用法?PHP tar::appendTar怎么用?PHP tar::appendTar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tar
的用法示例。
在下文中一共展示了tar::appendTar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tar
<?php
echo "<font face=\"Verdana\" size=\"2\">";
echo "<b>TAR Archive Class</b><br><br>\n\n";
// Include TAR Class
include "tar.class.php";
// Create instance of TAR class
$tar = new tar();
// Open an uncompressed tar file
if (!$tar->openTar("main.tar", FALSE)) {
echo "<b>Could not open main.tar!</b><br>\n";
} else {
echo "<b>Opened main.tar successfully!</b><br>\n";
}
// Append a compressed gzipped tar file
if (!$tar->appendTar("append.tgz", TRUE)) {
echo "<b>Could not append append.tgz to opened tar file!</b><br>\n";
} else {
echo "<b>Appended append.tgz successfully!</b><br>\n";
}
// List directories in the currently opened tar file(s)
echo "<b>Directories in " . $tar->filename . "</b><br>\n";
if ($tar->numDirectories > 0) {
foreach ($tar->directories as $id => $information) {
echo " {$information['directory']}/{$information['name']}<br>\n";
}
} else {
echo " There are no directories described in this tar archive.<br>\n";
}
echo "<br>\n";
// List files in the currently opened tar file(s)
示例2: tar
}
// Include TAR Class
include "tar.class.php";
// Creating a NEW Tar file
$tar = new tar();
$tar->addFile("exmaple.php");
$tar->addFile("example2.php");
$tar->addFile("tar.class.php");
$tar->toTar("new.tar", FALSE);
// Normal TAR
// $tar->toFile("new.tgz",TRUE); // Gzipped TAR
unset($tar);
// Appending 2 tar files together, saving in gzipped format (Gzipping requires zlib)
$tar = new tar();
$tar->openTAR("my.tar", FALSE);
$tar->appendTar("another.tar", FALSE);
$tar->toTar("combined.tgz", TRUE);
unset($tar);
// Removing 2 files from the new.tar file created above
$tar = new tar();
$tar->openTar("new.tar", FALSE);
$tar->removeFile("example.php");
$tar->removeFile("example2.php");
$tar->saveTar();
// Saves to currently open TAR file (In this case, new.tar)
unset($tar);
// Check if a TAR file contains a specific file
$tar = new tar();
$tar->openTar("new.tar", FALSE);
if ($tar->containsFile("tar.class.php")) {
echo "This tar file contains a file named 'tar.class.php'!<br>\n";