本文整理汇总了PHP中Dumper::download方法的典型用法代码示例。如果您正苦于以下问题:PHP Dumper::download方法的具体用法?PHP Dumper::download怎么用?PHP Dumper::download使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dumper
的用法示例。
在下文中一共展示了Dumper::download方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: deleteDir
file_put_contents($backupFolder . '.tar.gz', gzencode(file_get_contents($backupFolder . '.tar'), 9));
fwrite(STDERR, "Compresion complete!" . PHP_EOL);
fwrite(STDERR, "Removing temp folders and files.." . PHP_EOL);
//remove other files
unlink(realpath($backupFolder . '.tar'));
deleteDir(realpath($backupFolder));
fwrite(STDERR, "Temp folders and files removed!" . PHP_EOL);
}
} catch (Exception $e) {
fwrite(STDERR, "{$e}" . PHP_EOL);
}
return;
//exit(1);
} else {
$dumper = new Dumper($host, $port, $database, $noHistory, $callbackFile, $inlineAttachment, $binaryAttachments, $prettyJsonOutput, $separateFiles, $timeStamp, $callbackFilter);
$dumper->download();
}
function deleteDir($dirPath)
{
if (!is_dir($dirPath)) {
throw new InvalidArgumentException("{$dirPath} must be a directory");
}
if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
$dirPath .= '/';
}
$files = glob($dirPath . '*', GLOB_MARK);
foreach ($files as $file) {
if (is_dir($file)) {
deleteDir($file);
} else {
unlink($file);