本文整理汇总了PHP中Archive::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP Archive::remove方法的具体用法?PHP Archive::remove怎么用?PHP Archive::remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Archive
的用法示例。
在下文中一共展示了Archive::remove方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Archive
/**
* Removes ZIPs that are over the specified size
*
* @author Woxxy
* @returns bool
*/
function remove_old() {
while ($this->calculate_size() > (get_setting('fs_dl_archive_max') * 1024 * 1024)) {
$archive = new Archive();
$archive->order_by('lastdownload', 'ASC')->limit(1)->get();
$archive->remove();
}
}
示例2: while
/**
* Removes ZIPs that are over the specified size
*
* @author Woxxy
* @returns bool
*/
function remove_old()
{
$unlink_errors = 0;
while ($this->calculate_size() > get_setting('fs_dl_archive_max') * 1024 * 1024) {
$archive = new Archive();
$archive->order_by('lastdownload', 'ASC')->limit(1, $unlink_errors)->get();
if ($archive->result_count() == 1) {
if (!$archive->remove()) {
$unlink_errors++;
}
} else {
break;
}
}
}
示例3: on_change
/**
* Triggers the necessary calculations when a page is added, edited or removed
*
* @author Woxxy
*/
public function on_change($chapter_id)
{
// cleanup the archive if there is one for this chapter
$archive = new Archive();
$archive->where('chapter_id', $chapter_id)->get();
if ($archive->result_count() == 1) {
$archive->remove();
}
}