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


PHP PEAR_Common::__construct方法代码示例

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


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

示例1: array

 /**
  * @param PEAR_Frontend_*
  * @param array
  * @param PEAR_Config
  */
 function __construct($ui = null, $options = array(), $config = null)
 {
     parent::__construct();
     $this->_options = $options;
     if ($config !== null) {
         $this->config =& $config;
         $this->_preferredState = $this->config->get('preferred_state');
     }
     $this->ui =& $ui;
     if (!$this->_preferredState) {
         // don't inadvertantly use a non-set preferred_state
         $this->_preferredState = null;
     }
     if ($config !== null) {
         if (isset($this->_options['installroot'])) {
             $this->config->setInstallRoot($this->_options['installroot']);
         }
         $this->_registry =& $config->getRegistry();
     }
     if (isset($this->_options['alldeps']) || isset($this->_options['onlyreqdeps'])) {
         $this->_installed = $this->_registry->listAllPackages();
         foreach ($this->_installed as $key => $unused) {
             if (!count($unused)) {
                 continue;
             }
             $strtolower = create_function('$a', 'return strtolower($a);');
             array_walk($this->_installed[$key], $strtolower);
         }
     }
 }
开发者ID:crazy-max,项目名称:neard-bin-php,代码行数:35,代码来源:Downloader.php

示例2:

 /**
  * PEAR_Builder constructor.
  *
  * @param object $ui user interface object (instance of PEAR_Frontend_*)
  *
  * @access public
  */
 function __construct(&$ui)
 {
     parent::__construct();
     $this->setFrontendObject($ui);
 }
开发者ID:Spark-Eleven,项目名称:revive-adserver,代码行数:12,代码来源:Builder.php


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