本文整理汇总了PHP中PclZip::setZipName方法的典型用法代码示例。如果您正苦于以下问题:PHP PclZip::setZipName方法的具体用法?PHP PclZip::setZipName怎么用?PHP PclZip::setZipName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PclZip
的用法示例。
在下文中一共展示了PclZip::setZipName方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
/**
* Update::run()
*
* @return
*/
public function run()
{
$info = $this->getInfo();
$this->checkForUpdates();
if ($this->updateAvailable) {
/**
* 8. verificar que exista el archivo update.php
* 9. importar update.php y ejecutar el proceso
* */
$requirements = $this->checkRequirements($info['requirements']);
if ($requirements) {
return $requirements;
}
$response = $this->handler->fetch($info['url_update']);
if (isset($response['body']) && $response['successful']) {
$file_update = $response['body'];
} else {
$file_update = $response;
}
$file_saved = DIR_ROOT . "updates/update.zip";
$f = fopen($file_saved, 'wb');
fwrite($f, $file_update);
fclose($f);
echo __LINE__ . ': ' . sha1_file($file_saved) . '===' . $info['checksum'] . '<br />';
if (file_exists($file_saved) && sha1_file($file_saved) === $info['checksum']) {
$zip = new PclZip();
$zip->setZipName($file_saved);
if ($zip->extract(PCLZIP_OPT_PATH, DIR_ROOT, PCLZIP_OPT_REPLACE_NEWER) > 0) {
unlink($file_saved);
if (file_exists(DIR_ROOT . 'update.php')) {
include_once DIR_ROOT . 'update.php';
if (function_exists('upgradeNecoTienda')) {
upgradeNecoTienda($this->registry, VERSION);
}
unlink(DIR_ROOT . 'update.php');
}
} else {
return $zip->errorInfo(true);
}
} else {
return false;
}
} else {
//TODO: Ya esta actualizada
}
}