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


PHP Archive::__construct方法代码示例

本文整理汇总了PHP中Archive::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Archive::__construct方法的具体用法?PHP Archive::__construct怎么用?PHP Archive::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Archive的用法示例。


在下文中一共展示了Archive::__construct方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

	public function __construct($theme = null) {
		parent::__construct();
		$this->targetDirectory = DIR_FILES_THEMES;
		if ($theme) {
			$this->_theme = $theme;
		}
	}
开发者ID:rii-J,项目名称:concrete5-de,代码行数:7,代码来源:page_theme_archive.php

示例2: __construct

 public function __construct(\ZipArchive $zipArchive, $tmpFilePath = '/tmp')
 {
     $tmpFile = tempnam($tmpFilePath, 'zip');
     parent::__construct($zipArchive, $tmpFile);
     register_shutdown_function(function ($filename) {
         unlink($filename);
     }, $tmpFile);
 }
开发者ID:d9magai,项目名称:phparchive,代码行数:8,代码来源:TmpArchive.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->targetDirectory = DIR_APP_UPDATES;
 }
开发者ID:ricardomccerqueira,项目名称:rcerqueira.portfolio,代码行数:5,代码来源:update.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->targetDirectory = DIR_PACKAGES;
 }
开发者ID:VonUniGE,项目名称:concrete5-1,代码行数:5,代码来源:package_archive.php

示例5: __construct

 public function __construct($path)
 {
     parent::__construct(array());
     $this->_path = $path;
 }
开发者ID:tilitala,项目名称:nForum,代码行数:5,代码来源:elite_controller.php

示例6: __construct

 /**
  * function __contstruct()
  * do not use this to get a object
  *
  * @param array $info
  * @param MailBox $box
  * @param int $num
  * @return Mail
  * @access public
  * @throws MailNullException
  */
 public function __construct($info, $box, $num)
 {
     try {
         parent::__construct($info);
     } catch (ArchiveNullException $e) {
         throw new MailNullException();
     }
     if (!is_a($box, "MailBox")) {
         throw new MailNullException();
     }
     $this->num = $num;
     $this->_box = $box;
 }
开发者ID:tilitala,项目名称:nForum,代码行数:24,代码来源:mail.php

示例7: __construct

 /**
  * function __contstruct()
  * do not use this to get a object
  *
  * @param array $info
  * @param Board $board
  * @param int $pos
  * @return Article
  * @access public
  * @throws ArticleNullException
  */
 public function __construct($info, $board, $pos = null)
 {
     try {
         parent::__construct($info);
     } catch (ArchiveNullException $e) {
         throw new ArticleNullException();
     }
     if (!is_a($board, "Board")) {
         throw new ArticleNullException();
     }
     $this->_board = $board;
     $this->_pos = $pos;
 }
开发者ID:tilitala,项目名称:nForum,代码行数:24,代码来源:article.php


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