当前位置: 首页>>代码示例>>PHP>>正文


PHP Archive::remove方法代码示例

本文整理汇总了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();
		}
	}
开发者ID:Nakei,项目名称:FoOlSlide,代码行数:13,代码来源:archive.php

示例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;
         }
     }
 }
开发者ID:bonsoirval,项目名称:FoOlSlide,代码行数:21,代码来源:archive.php

示例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();
     }
 }
开发者ID:bonsoirval,项目名称:FoOlSlide,代码行数:14,代码来源:page.php


注:本文中的Archive::remove方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。